Trait ilattice::vector::IntegerVector[][src]

pub trait IntegerVector: Vector<Scalar = Self::IntScalar> + Eq + ScalarBitwiseLogic<Self::Scalar> + VectorBitwiseLogic + AllShiftOps<Self::IntScalar> {
    type IntScalar: IntegerScalar;
    fn all_dimensions_are_powers_of_two(self) -> bool { ... }
}
Expand description

A Vector<T> where T is some integer.

This enables Eq, bitwise logical operations, and bit shifting.

Associated Types

Provided methods

Implementors