Docs.rs
roaring-bloom-filter-0.2.0
roaring-bloom-filter 0.2.0
Docs.rs crate page
AGPL-3.0
Links
Homepage
Repository
crates.io
Source
Owners
oliverdding
Dependencies
log ^0.4.14
normal
roaring ^0.9.0
normal
env_logger ^0.9.0
dev
Versions
92.31%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Crate roaring_bloom_filter
roaring_
bloom_
filter
0.2.0
All Items
Crate Items
Structs
Traits
Crate
roaring_
bloom_
filter
Copy item path
Source
Structs
§
Scalable
Bloom
Filter
A scalable bloom filter implementation, based on VariantBloomFilter.
Stable
Bloom
Filter
Stable bloom filter, the best choice for small data set. In this structure, k hash functions share a global bitmap, whose max size is u64::MAX. Usage:
Variant
Bloom
Filter
A variant bloom filter, the best choice for bigger data set. In this structure, k hash functions all has it’s own slice of bitmap, whose max size is u64::MAX. Usage:
Traits
§
Bloom
Filter
Interface for bloom filter. Define all the function a bloom filter should implement.