Syntax
set result = anInteger.modulo(divisor)
Semantics modulo() returns anInteger mod divisor.
SubstitutablesanInteger, divisor  Can be any variable or object attribute having the type Integer.
Examples
set result = anInteger.modulo(2);
  • No labels