pub const fn rapidhash_inline(data: &[u8], seed: u64) -> u64
Expand description
Rapidhash a single byte stream, matching the C++ implementation.
Is marked with #[inline(always)]
to force the compiler to inline and optimise the method.
Can provide large performance uplifts for inputs where the length is known at compile time.