Trait numeric_array::NumericSequence
[−]
[src]
pub trait NumericSequence { type Element; type Length: ArrayLength<Self::Element>; }
Defines any NumericArray
type as its element and length types
This is useful for situations where the element type and length can be variable,
but you need a generic type bound and don't want to deal with
T
and N: ArrayLength<T>
from NumericArray<T, N>
directly.
Associated Types
Implementors
impl<T, N: ArrayLength<T>> NumericSequence for NumericArray<T, N>