ph 0.11.0

The library of data structures based on perfect hashing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

//#![feature(atomic_from_mut)]
#![cfg_attr(feature = "sip13", feature(hashmap_internals))]

pub mod utils;
pub mod stats;
pub mod fmph;
pub mod seeds;
pub mod phast;

pub use seedable_hash::{self, BuildSeededHasher, Seedable, BuildDefaultSeededHasher};
pub use dyn_size_of::GetSize;