April 08, 2018
Hi All,

I've just released DRoaring, a D library which wraps CRoaring: https://github.com/RoaringBitmap/CRoaring

Roaring Bitmaps are compressed bit arrays which can store a huge amount of bits in a space efficient manner. The bitmap is organized so that adding/removing bits is very fast and don't require unpacking the whole bitmap. You can use bit arrays for efficient set operations.

Github: https://github.com/yuce/droaring
DUB: https://code.dlang.org/packages/roaring
Reddit post: https://www.reddit.com/r/d_language/comments/8ar007/roaring_bitmaps_for_d/

Yuce Tekol