bitbloom 0.1.1

A no_std Bloom filter implementation
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]

#[macro_use]
extern crate alloc;

mod bit_vec;
mod bloom;

pub use crate::bloom::Bloom;