pub trait BinaryUInteger: BinaryInteger {
    fn is_power_of_two(&self) -> bool;
}
Expand description

Unsigned integral types with efficient binary operations.

Required Methods

Return ture if and only if self == 2^k for some k.

Implementations on Foreign Types

Implementors