# Functions
Accumulate returns the sum of the given slice after coercing all elements to a big.Int, or panics if it cannot.
Add performs addition with the given values after coercing them to big.Int, or panics if it cannot.
Div performs division with the given values after coercing them to big.Int, or panics if it cannot.
Equal compares the given values after coercing them to big.Int, or panics if it cannot.
Exp performs modular eponentiation with the given values after coercing them to big.Int, or panics if it cannot.
I returns a new big.Int.
Max returns the maximum of the two given values after coercing them to big.Int, or panics if it cannot.
Min returns the min of the two given values after coercing them to big.Int, or panics if it cannot.
Mod performs modulus with the given values after coercing them to big.Int, or panics if it cannot.
Mul performs multiplication with the given values after coercing them to big.Int, or panics if it cannot.
Sub performs subtraction with the given values after coercing them to big.Int, or panics if it cannot.
# Interfaces
ToIntable represents a type that is convertable to a big.Int, ex utils.Big.