pub trait VectorKey: Sized + Copy + Add<Output = Self> + Sub<Output = Self> + Shl<Output = Self> + Shr<Output = Self> + Eq { fn mul_u32(self, rhs: u32) -> Self; }
An integer vector that can be used as a key for Tree.
Tree