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

Performs integer division on two Short values.

Parameters
  • a Dividend.
  • b Divisor.
Returns

a//b.

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