pub trait BinArithOp:
Op
+ SameOperandsAndResultType
+ OneResultInterface
+ NOpdsInterface<2>
+ NResultsInterface<1> {
// Provided method
fn new(ctx: &mut Context, lhs: Value, rhs: Value) -> Self
where Self: Sized { ... }
}Expand description
Binary arithmetic Op.