operator & method

Uint32 operator &(
  1. Uint32 other
)

Bitwise AND logically coupled to bit patterns.

Implementation

Uint32 operator &(Uint32 other) => Uint32.from(value & other.value);