summaryrefslogtreecommitdiff
path: root/set.c
AgeCommit message (Expand)AuthorFilesLines
2018-03-16Use set_foreach instead of rolling our own.Thomas Helland1-9/+3
2017-12-01Add asserts that the user doesn't try to add the empty or deleted values.Eric Anholt1-0/+8
2016-03-02Do a full search when adding new itemsJason Ekstrand1-7/+17
2013-10-25Cleanup implementation of set to prefer "set" over "hash table" or "ht"cworth-with-warningsCarl Worth1-91/+93
2013-10-25Teach the hash table itself to know its own hash functionCarl Worth1-9/+38
2013-10-25Add set_contains and int_set_contains functions.Carl Worth1-0/+12
2013-10-25Add new convenience function 'remove' (renaming former to 'remove_entry')Carl Worth1-1/+18
2012-11-06Make a few function args const.Eric Anholt1-3/+3
2012-11-06Make the deleted_key variables static const.Eric Anholt1-2/+2
2011-08-18Add a set implementation derived from the hash_table implementation.Eric Anholt1-0/+346