Type Alias typenum::uint::Odd

source ·
type Odd<N> = UInt<N, B1>;
Expand description

The odd number 2*N + 1

Aliased Type§

struct Odd<N> {
    pub(crate) msb: N,
    pub(crate) lsb: B1,
}

Fields§

§msb: N

The more significant bits of Self.

§lsb: B1

The least significant bit of Self.