bigint
bigint copied to clipboard
operator* and operator*=
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 &);" ?
Should be safe to change to long long
.
@kasparsklavins do you want pull requests with these types of changes or will you eventually add them yourself?