Trait rustc::middle::dataflow::DataFlowOperator [] [src]

pub trait DataFlowOperator: BitwiseOperator {
    fn initial_value(&self) -> bool;
}
Unstable (rustc_private)

Parameterization for the precise form of data flow that is used.

Required Methods

fn initial_value(&self) -> bool

Unstable (rustc_private)

Specifies the initial value for each bit in the on_entry set

Implementors