init
Function parameters
Parameters
- seed:u64
Type definitions in this namespace
Types
Source
Implementation
pub fn init(seed: u64) XxHash64 {
return XxHash64{
.accumulator = Accumulator.init(seed),
.seed = seed,
.buf = undefined,
.buf_len = 0,
.byte_count = 0,
};
}