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

Performs integer division on two Long values.

Parameters
  • a Dividend.
  • b Divisor.
Returns

a//b.

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