pub trait HashKernels {
    type HI: Iterator<Item = usize>;

    fn hash_iter<T: Hash>(&self, item: &T) -> Self::HI;
}
Expand description

A trait for creating hash iterator of item.

Required Associated Types§

Required Methods§

Implementors§