Versions in this module Expand all Collapse all v1 v1.0.0 Feb 15, 2014 Changes in this version + type BloomFilter struct + func New(m uint, k uint) *BloomFilter + func NewWithEstimates(n uint, fp float64) *BloomFilter + func (f *BloomFilter) Add(data []byte) *BloomFilter + func (f *BloomFilter) Cap() uint + func (f *BloomFilter) ClearAll() *BloomFilter + func (f *BloomFilter) EstimateFalsePositiveRate(n uint) (fp_rate float64) + func (f *BloomFilter) K() uint + func (f *BloomFilter) Test(data []byte) bool + func (f *BloomFilter) TestAndAdd(data []byte) bool Other modules containing this package gopkg.in/willf/bloom.v2