Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-16 | bitmap: use external iterator | Tom Gundersen | |
Reuse the Iterator object from hashmap.h and expose a similar API. This allows us to do { Iterator i; unsigned n; BITMAP_FOREACH(n, b, i) { Iterator j; unsigned m; BITMAP_FOREACH(m, b, j) { ... } } } without getting confused. Requested by David. | |||
2015-07-14 | basic: add a Bitmap implementation | Tom Gundersen | |
For when a Hashmap is overkill. |