operator - method

Uint32 operator -(
  1. Uint32 other
)

Implementation

Uint32 operator -(Uint32 other) {
  var v = _value - other._value;
  if (v < 0) v += 0x100000000;
  return Uint32._(v);
}