//! Compile time optimized maps and sets.
//!
//! PHF data structures can be generated via the syntax extensions in the
//! `phf_macros` crate or via code generation in the `phf_codegen` crate. See
//! the documentation of those crates for more details.
extern crate debug_builders;
extern crate phf_shared;
pub use PhfHash;
pub use Map;
pub use Set;
pub use OrderedMap;
pub use OrderedSet;