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

Computes the remainder of one SByte value divided by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

a%b.

Throws
  • ZeroDivisionError if the divisor equals `SByte(0)` at runtime.
Example
assert SByte(10) % SByte(3) == SByte(1)