- 2,798 total downloads
- last updated 12/13/2018
- Latest version: 1.0.1
A Bloom Filter is a probabalistic data structure that Implements the Add() and Contains() methods in a memory efficient manner when compared to the more traditional Hash Set. However, the Bloom Filter has some draw backs:
It will sometimes indicate that an element is in the set when it isn't. The...
More information