/// A simple Counting Bloom Filter implementation in Rust.
////// This allows for insertion, deletion, and membership queries with possible false positives.
/// Counters are u32 to handle multiple insertions of the same item.
pubstructCountingBloomFilter{pubboolean_counting:bool,
pubsize:usize,
pubnum_hashes:usize,
pubcounters:Vec<u8>,
}