Crates.io | generic-bloom |
lib.rs | generic-bloom |
version | 0.1.0 |
source | src |
created_at | 2022-02-14 00:12:38.95196 |
updated_at | 2022-02-14 00:12:38.95196 |
description | A generic implementation of Bloom filters using traits |
homepage | |
repository | https://github.com/goose121/generic-bloom-rs |
max_upload_size | |
id | 531960 |
size | 56,107 |
This crate provides a BloomFilter
trait which can be parameterized
by different types of storage (via the BloomSet
trait) to obtain
traditional binary Bloom filters, counting Bloom filters, and spectral
Bloom filters. For more information, see the
documentation.