pub type UnExpr = UnInst<Expr>;Expand description
Type alias for unary expressions.
Aliased Type§
struct UnExpr {
pub lhs: Expr,
pub op: UnaryOp,
}Fields§
§lhs: ExprThe operand of the unary operation.
op: UnaryOpThe kind of the unary operation.