Trait rustc_typeck::middle::dataflow::BitwiseOperatorExperimental [-]  [+] [src]

pub trait BitwiseOperator {
    fn join(&self, succ: uint, pred: uint) -> uint;
}

Required Methods

fn join(&self, succ: uint, pred: uint) -> uint

Joins two predecessor bits together, typically either | or &

Implementors