Trait typenum::type_operators::Len [] [src]

pub trait Len {
    type Output: Unsigned;
    fn len(&self) -> Self::Output;
}

A type operator that gives the length of an Array or the number of bits in a UInt.

Associated Types

The length as a type-level unsigned integer.

Required Methods

This function isn't used in this crate, but may be useful for others.

Implementors