pub trait ToLowerBits {
    type Boolean: BooleanTrait;

    fn to_lower_bits_le(&self, k: usize) -> Vec<Self::Boolean, Global> ;
    fn to_lower_bits_be(&self, k: usize) -> Vec<Self::Boolean, Global> ;
}
Expand description

Unary operator for converting to k number of bits.

Required Associated Types§

Required Methods§

Outputs the lower k bits of an n-bit element in little-endian representation. Enforces that the upper n - k bits are zero.

Outputs the lower k bits of an n-bit element in big-endian representation. Enforces that the upper n - k bits are zero.

Trait Implementations§

Returns the number of constants, public inputs, private inputs, and constraints.
Returns the mode of the output.

Implementors§