Function add

Source
pub fn add(
    left: ArcIntern<Expression>,
    right: ArcIntern<Expression>,
) -> ArcIntern<Expression>
Expand description

Create an ArcIntern<Expression> representing left + right.

A wrapper around Expression::Infix with InfixOperator::Plus.