klyn.SByte.operator%=
method
public native static operator%=( readonly a as SByte, readonly b as SByte ) as Void
Description

Replaces a with the remainder of a divided by b.

Parameters
  • a Mutable target value.
  • b Divisor.
Throws
  • ZeroDivisionError if the divisor equals `SByte(0)` at runtime.
Example
value = SByte(10)
value %= SByte(3)
assert value == SByte(1)