operator + method

BigInteger operator +(
  1. BigInteger other
)

Arithmetic operators

Implementation

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