pub trait SameOperandsAndResultType:
Op
+ SameOperandsType
+ SameResultsType {
// Provided method
fn common_type(&self, ctx: &Context) -> Option<TypeHandle> { ... }
}Expand description
An Op with all results and operands having the same type.
Provided Methods§
Sourcefn common_type(&self, ctx: &Context) -> Option<TypeHandle>
fn common_type(&self, ctx: &Context) -> Option<TypeHandle>
Get the common type of results / operands.