operator - method

Int32 operator -(
  1. Int32 other
)

Standard subtraction. Computes precise arithmetic underflows independently.

Implementation

Int32 operator -(Int32 other) => Int32.from(value - other.value);