pub unsafe fn city_hash_crc_128(bytes: &[u8]) -> u128
Available with target feature sse4.2 only.
Expand description

Retrieves a 128-bit hash of a slice of bytes.

Safety

Example

use cityhash_sys::city_hash_crc_128;

assert_eq!(unsafe {city_hash_crc_128(&[0u8,1,2,3,4])}, 0xE3CB1F3F3AB9643BEF3668C150012EEC);