Math Operation
A string used to determine how an integer should be operated with another integer.
Values
Value | Description |
---|---|
add |
Adds the integer to another integer. |
divide |
Divides the integer by another integer. |
max |
Returns the greater of the two integer values. |
min |
Returns the smaller of the two integer values. |
modulo |
Returns the floored remainder by dividing the integer by another integer. |
multiply |
Multiply the integer to another integer. |
set |
Replace the integer with another integer. |
subtract |
Subtract the integer from another integer. |