operator + method

Uint32List operator +(
  1. Uint32List b
)

Returns a new Uint32List with bits added (+) to b.

Overflows are handled by moving bits from lo to hi, or discard hi.

Implementation

Uint32List operator +(Uint32List b) {
  final lo = (this.lo + b.lo).hiLo();
  final hi = (this.hi + b.hi + lo.hi).hiLo();
  return _new(hi.lo, lo.lo);
}