summaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
2011-08-18Add a set implementation derived from the hash_table implementation.Eric Anholt1-6/+3
While it was easy to produce, it's easier to do it once and maintain it than leave this up to every possible user. Plus, it means it gets testing.
2011-08-18Add defined behavior for inserts with matching keys, and a test.Eric Anholt1-2/+4
2009-11-23Add deleted entry management by rehashing on insert when appropriate.Eric Anholt1-2/+2
2009-11-23Add a testcase for the upcoming deletion management code.Eric Anholt1-2/+8
2009-11-23Add testing infrastructure.Eric Anholt1-3/+3
2009-11-23Initial import of hash_table.Eric Anholt1-0/+45
This is entirely written by myself, with the exception of the hash_sizes[] contents which come from the hash_table implementation in nickle, which I decided to not use.