pub trait MSB {
    type Boolean: BooleanTrait;

    fn msb(&self) -> &Self::Boolean;
}
Expand description

Unary operator for retrieving the most-significant bit.

Required Associated Types

Required Methods

Returns the MSB of the value.

Implementors