Type Alias ConstFoldResult

Source
pub type ConstFoldResult = Option<Vec<(OutgoingPort, Value)>>;
Expand description

Output of constant folding an operation, None indicates folding was either not possible or unsuccessful. An empty vector indicates folding was successful and no values are output.

Aliased Type§

pub enum ConstFoldResult {
    None,
    Some(Vec<(OutgoingPort, Value)>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Vec<(OutgoingPort, Value)>)

Some value of type T.