subChecked method

Uint128 subChecked(
  1. Uint128 other
)

Implementation

Uint128 subChecked(Uint128 other) {
  if (other > this) throw IntegerError.overflow;
  return this - other;
}