Function init [src]
Prototype
pub fn init(seed: u64) XxHash64
Parameters
seed: u64
Source
pub fn init(seed: u64) XxHash64 {
return XxHash64{
.accumulator = Accumulator.init(seed),
.seed = seed,
.buf = undefined,
.buf_len = 0,
.byte_count = 0,
};
}