Trait rustc::middle::dataflow::BitwiseOperator[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