Trait rust_bigint::traits::BitManipulation[][src]

pub trait BitManipulation {
    fn set_bit(&mut self, bit: usize, bit_val: bool);
fn test_bit(&self, bit: usize) -> bool; }
Expand description

Allow bit manipulation across BigInts

Required methods

Set a given bit

Test value of given bit

Implementations on Foreign Types

Implementors