Trait Vec2
ppv_lite86
pub trait Vec2<W> { fn extract(self, i: u32) -> W; fn insert(self, w: W, i: u32) -> Self; }
A vector composed of two elements, which may be words or themselves vectors.
fn extract(self, i: u32) -> W
fn insert(self, w: W, i: u32) -> Self