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)>),
}