Registry / utility / holiman-bloomfilter-v2

holiman-bloomfilter-v2

JSON →
library2.0.3gogounverified

Package bloomfilter implements a fast, concurrent Bloom filter for probabilistic set membership testing.

go get github.com/holiman/bloomfilter/v2
INSTALL
IMPORT
SIG · HOLIMAN-BLOOMFILTE
H
holiman-bloomfilter-v2
utilitygov2.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

bloomfilter
github.com/holiman/bloomfilter/v2

Create a Bloom filter, add an element, and test membership.

package main import ( "fmt" "github.com/holiman/bloomfilter/v2" ) func main() { bf := bloomfilter.New(1000, 0.01) bf.Add([]byte("key")) fmt.Println(bf.Contains([]byte("key"))) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.0.3latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
holiman-bloomfilter-v2 — go get holiman-bloomfilter-v2 · libregistry