Trait adapton::catalog::bitstring::BitString [] [src]

pub trait BitString {
    const MAX_LEN: i64;

    fn pow(_: i64, _: i64) -> i64;
    fn flip(_: i64, _: i64) -> i64;
    fn is_set(_: i64, _: i64) -> bool;
    fn prepend(_: i64, _: BS) -> BS;
    fn length(_: BS) -> i64;
    fn shift_left(_: BS, _: i64) -> BS;
}

Associated Constants

MAX_LEN: i64

Required Methods

Implementors