Type Definition wedged::algebra::Even1

source · []
pub type Even1<T> = Even<T, U1>;
Expand description

A 1-dimensional rotor

Implementations

Constructs a Even1 directly from components

Examples
let arr = [6];
let x = Even1::new(6);

assert_eq!(x.as_slice(), &arr);