operator & method

Uint64 operator &(
  1. Uint64 other
)

Bitwise AND logically coupled to bit patterns.

Implementation

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