aboutsummaryrefslogtreecommitdiff
path: root/lib/cbit/htab.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* stuffcomex2015-08-171-1/+2
|
* formattingcomex2015-07-171-1/+1
|
* don't be n^2 for removal, lol. i should probably switch to rust's robin ↵comex2015-07-121-21/+12
| | | | hood hashing - it isn't that much code and supposedly performs much better when the table gets full. *however*, it requires checking the hash of every entry in the chain during insert, which basically means storing it, which means more memory usage ... but by allowing fuller tables it could decrease memory usage. but if you have a big table anyway to avoid copying, you don't want *extra*... and storing the hash twice in the simple case is so dumb feeling. dunno.
* fix my hash table algorithm - arghcomex2015-07-121-14/+35
|
* redo crash reporting - untested (but it compiles)comex2015-07-121-21/+33
|
* add veccomex2015-03-011-8/+7
|
* get rid of the unnecessary CoreFoundation dependencycomex2015-01-291-5/+14
|
* port some old codecomex2015-01-291-0/+274