operator & method

BigInteger operator &(
  1. BigInteger other
)

Bitwise operators

Implementation

BigInteger operator &(BigInteger other) => BigInteger._(_value & other._value);