xref: /inferno-os/module/bloomfilter.m (revision 46439007cf417cbd9ac8049bb4122c890097a0fa)
1Bloomfilter: module {
2	PATH:	con "/dis/lib/bloomfilter.dis";
3	init:		fn();
4	# logm is log base 2 of the number of bits in the bloom filter.
5	# k is number of independent hashes of d that are entered into the filter.
6	filter:	fn(d: array of byte, logm, k: int): Sets->Set;
7};
8