public native static operator%( readonly a as Long, readonly b as Long ) as Long
Computes the remainder of one Long value divided by another.
a
b
a%b.
a%b
Long(0)
assert Long(10) % Long(3) == Long(1)