euclideanModuloAssign method

Expression euclideanModuloAssign(
  1. Expression other
)

Return this %= other.

Implementation

Expression euclideanModuloAssign(Expression other) =>
    BinaryExpression._(this, other, '%=');