operator & method

Uint32List operator &(
  1. Uint32List b
)

Returns a new Uint32List with bits compared with b logical and (&).

Implementation

Uint32List operator &(Uint32List b) => _new(hi & b.hi, lo & b.lo);