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

Performs integer division on two SByte values.

Parameters
ParameterDescription
aDividend.
bDivisor.
Returns

a//b.

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