Trait succinct::select::SelectSupport1 [] [src]

pub trait SelectSupport1 {
    fn select1(&self, index: u64) -> Option<u64>;
}

Interface for types that support selecting for 1 bits.

Required Methods

fn select1(&self, index: u64) -> Option<u64>

Returns the position of the indexth 1 bit.

Implementors