modulo method

Expression modulo(
  1. Expression other
)

Returns the remainder of dividing this expression by another

Implementation

Expression modulo(Expression other) {
  return _ModuloExpression(this, other);
}