# Functions
Add returns the result of adding the values of params x and y.
Cmp wraps the Int.Cmp() function, returning the same values as the function it wraps: - -1 if x < y - 0 if x == y - 1 if x > y Note: returns -2 if either x or y == nil.
Div returns the result of dividing the value of x by the value of y.
Eq returns true if x == y.
FromBigInt returns a new *big.Float with is value set to the value of n.
FromFloat32 returns a new *big.Float with is value set to f.
FromFloat64 returns a new *big.Float with is value set to f.
FromUint64 returns a new *big.Int with its value set to n.
Gt returns true if x > y.
Gte returns true if x >= y.
IsZero returns true if n == 0.
Lt returns true if x < y.
Lte returns true if x <= y.
Mul returns the result of multiplying the values of params x and y.
Sub returns the result of subtracting the value of param y from the value of param x.