diff --git a/index.html b/index.html index e9bec6e5..47671805 100644 --- a/index.html +++ b/index.html @@ -503,10 +503,10 @@

In some instances, you may want to convert a Roaring bitmap into a conventional (uncompressed) bitset. Indeed, bitsets have advantages such as higher query performances in some cases. The following code illustrates how you may do so:

for (uint32_t i = 100; i < 100000; i+= 1 + (i%5)) {
- +
}
for (uint32_t i = 100000; i < 500000; i+= 100) {
- +
}
roaring_bitmap_add_range(r1, 500000, 600000);
bitset_t * bitset = bitset_create();