4 Comments

This is very interesting.

I think this is incorrect:

// check if 'a' and 'b' are present in the bloom filter

bloom_filter & mask != 0;

I believe it's supposed to be this:

// check if 'a' and 'b' are present in the bloom filter

bloom_filter & mask == mask;

Expand full comment

Good catch, Kyle! I corrected it. Thank you.

Expand full comment

Awesome article - shared it with people on my slack channels

Expand full comment

Thank you so much, Robert! :-)

Expand full comment