pub type BinExpr = BinInst<Expr>;Expand description
Type alias for binary expressions.
Aliased Type§
struct BinExpr {
pub operands: (Expr, Expr),
pub op: BinOp,
}Fields§
§operands: (Expr, Expr)The operands of the binary operation (left, right).
op: BinOpThe kind of the binary operation.