operator & method

  1. @nonVirtual
T operator &(
  1. T other
)

Bitwise AND operator.

Implementation

@nonVirtual
T operator &(T other) => _wrapSignAware(value & other.value);