bloom 1.0.1
A basic bloom filter.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
bloom
A basic bloom filter.
Documentation
Example
import bloom;
auto filter = BloomFilter!()(1024); // filter for 1024 entries
filter.insert(1);
assert(filter.test(1));
assert(!filter.test(2)); // might fail
filter.insert(2);
assert(filter.test(2));
- Registered by Martin Nowak
- 1.0.1 released 6 years ago
- MartinNowak/bloom
- BSL-1.0
- Copyright © 2013-, Martin Nowak
- Authors:
- Dependencies:
- none
- Versions:
-
1.0.2 2021-Feb-04 1.0.1 2018-May-16 1.0.0 2016-Oct-17 0.3.0 2015-Sep-30 0.2.1 2014-Nov-30 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
239 downloads this month
-
124799 downloads total
-
- Score:
- 3.7
- Short URL:
- bloom.dub.pm