code: 9ferno

ref: 410c1337e07a9f1d521360a160903fe32b4e0d4a
dir: /module/bloomfilter.m/

View raw version
Bloomfilter: module {
	PATH:	con "/dis/lib/bloomfilter.dis";
	init:		fn();
	# logm is log base 2 of the number of bits in the bloom filter.
	# k is number of independent hashes of d that are entered into the filter.
	filter:	fn(d: array of byte, logm, k: int): Sets->Set;
};