Add bloomfilter_clear() BiF.

This commit is contained in:
Matthias Vallentin 2013-07-24 11:21:10 +02:00
parent c89f61917b
commit 5383e8f75b
7 changed files with 53 additions and 0 deletions

View file

@ -70,6 +70,11 @@ bool CounterVector::Decrement(size_type cell, count_type value)
return carry;
}
void CounterVector::Clear()
{
bits->Clear();
}
CounterVector::count_type CounterVector::Count(size_type cell) const
{
assert(cell < Size());