
10 Jun
2009
10 Jun
'09
6:48 p.m.
Dean Michael Berris wrote:
And as of revision 53785 of the Boost Sandbox, boost::bloom_filter<> now has the following template parameters:
template <class Input, class Sequence, class Block, class Allocator> struct bloom_filter;
Sequence is a Fusion-compliant sequence of hash functions. So call it HashFunctions or HashSequence. Intuitively, I'd interpret Sequence as "the underlying sequence", i.e. the container that stores the bits. And yes, I know that makes no sense for a Bloom filter.
Sebastian