Registry / utility / bits-and-blooms-bloom-v3

bits-and-blooms-bloom-v3

JSON →
library3.7.1gogounverified

Package bloom provides data structures and methods for creating Bloom filters.

go get github.com/bits-and-blooms/bloom/v3
INSTALL
IMPORT
SIG · BITS-AND-BLOOMS-BL
B
bits-and-blooms-bloom-v3
utilitygov3.7.1
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.

bloom
github.com/bits-and-blooms/bloom/v3

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

package main import ( "fmt" "github.com/bits-and-blooms/bloom/v3" ) func main() { filter := bloom.NewWithEstimates(1000, 0.01) filter.Add([]byte("test")) fmt.Println(filter.Test([]byte("test"))) }
Debug
Known issues

No known issues recorded.

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

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
bits-and-blooms-bloom-v3 — go get bits-and-blooms-bloom-v3 · libregistry