Type Alias typenum::uint::Even

source ·
type Even<N> = UInt<N, B0>;
Expand description

The even number 2*N

Aliased Type§

struct Even<N> {
    pub(crate) msb: N,
    pub(crate) lsb: B0,
}

Fields§

§msb: N

The more significant bits of Self.

§lsb: B0

The least significant bit of Self.