Type Definition wedged::algebra::Even0

source · []
pub type Even0<T> = Even<T, U0>;
Expand description

A 0-dimensional rotor

Implementations

Constructs a Even0 directly from components

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

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