Trait diffgeom::typenum::Len
[−]
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
Required Methods
Implementors
impl<V, A> Len for TArr<V, A> where
A: Len,
<A as Len>::Output: Add<B1>,
<<A as Len>::Output as Add<B1>>::Output: Unsigned,impl Len for UTermimpl<U, B> Len for UInt<U, B> where
B: Bit,
U: Unsigned + Len,
<U as Len>::Output: Add<B1>,
<<U as Len>::Output as Add<B1>>::Output: Unsigned,impl Len for ATerm