pub trait Logical<T> {
    fn and(self, args: Vec<T>) -> Bitwise<T>;
}

Required Methods

Implementors