csf 0.1.14

The library of compressed static functions (maps) that use perfect hashing and value compression.
Documentation
//! Compressed static maps based on fingerprinting.

mod map;
pub use map::{Map, MapConf};

mod cmap;
pub use cmap::{CMap, CMapConf};

mod gocmap;
pub use gocmap::{GOCMap, GOCMapConf};
pub use ph::fmph::{GroupSize, SeedSize, TwoToPowerBits, TwoToPowerBitsStatic, Bits, Bits8, GOConf};

pub mod level_size_chooser;
pub use level_size_chooser::{LevelSizeChooser, SimpleLevelSizeChooser, ProportionalLevelSize, OptimalLevelSize, ResizedLevel};

pub mod collision_solver;
pub use collision_solver::{CollisionSolver, CollisionSolverBuilder, IsLossless, LoMemAcceptEquals};



mod common;