pub fn infix(
left: ArcIntern<Expression>,
operator: InfixOperator,
right: ArcIntern<Expression>,
) -> ArcIntern<Expression>
Expand description
A wrapper around Expression::Infix
that takes the contents of the inner expression type as arguments directly and returns an ArcIntern<Expression>
.
See also infix_expr
.