csf 0.1.14

The library of compressed static functions (maps) that use perfect hashing and value compression.
Documentation
1
2
3
4
5
6
7
8
9
//! Compressed static maps based on solving linear systems.

pub mod graph3;
mod map;
mod conf;
pub use conf::{MapConf, ValuesPreFiller, FillRandomly, FillWithPattern};
pub use map::Map;
mod cmap;
pub use cmap::CMap;