pub trait ChunkLength<A>: Unsigned {
    type SizedType;
}
Expand description

A trait used to decide the size of an array.

<N as ChunkLength<A>>::SizedType for a type level integer N will have the same size as [A; N].

Associated Types

A Sized type matching the size of an array of Self elements of A.

Implementations on Foreign Types

Implementors