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

Subtracts one Long value from another.

Parameters
ParameterDescription
aLeft operand.
bRight operand.
Returns

a-b.

Example
assert Long(10) - Long(3) == Long(7)