highhash 0.2.0

High-speed hashing algorithms for Rust.
Documentation
1
2
3
4
5
6
7
8
//! City string-hashing algorithm by Geoff Pike and Jyrki Alakuijala
mod city_128;
mod city_32;
mod city_64;

pub use city_32::{hash32, hash32_with_seed, CityHash32, CityHasher32};
pub use city_64::{hash64, hash64_with_seed, hash64_with_seeds, CityHash64, CityHasher64};
pub use city_128::{hash128, hash128_with_seed, CityHash128, CityHasher128};