the current code is: ``` //Multiplication Bigint operator*(Bigint const &); Bigint &operator*=(Bigint const &); Bigint operator*(long long const &); Bigint &operator*=(int const &); ``` why not be "Bigint &operator*=(long long const &);" ?
the current code is:
why not be "Bigint &operator*=(long long const &);" ?