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

Subtracts one Short value from another.

Parameters
ParameterDescription
aLeft operand.
bRight operand.
Returns

a-b.

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