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
  • a Left operand.
  • b Right operand.
Returns

a-b.

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