[]Trait librelic::prelude::blake2::crypto_mac::generic_array::typenum::Len

pub trait Len {
    type Output: Unsigned;
    pub 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

type Output: Unsigned

The length as a type-level unsigned integer.

Loading content...

Required methods

pub fn len(&self) -> Self::Output

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

Loading content...

Implementors

impl Len for ATerm

Length of ATerm by itself is 0

type Output = UTerm

impl Len for UTerm

Length of UTerm by itself is 0

type Output = UTerm

impl<U, B> Len for UInt<U, B> where
    U: Unsigned + Len,
    B: Bit,
    <U as Len>::Output: Add<B1>,
    <<U as Len>::Output as Add<B1>>::Output: Unsigned

Length of a bit is 1

type Output = <<U as Len>::Output as Add<B1>>::Output

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

Size of a TypeArray

type Output = <<A as Len>::Output as Add<B1>>::Output

Loading content...