INNER CODE UNIT · Go
func
ericlagergren/decimal · big.go:297
func (c Context) etiny() int {
return c.emin() - (c.precision() - 1)
}
// etop returns the maximum exponent of an overflow result.
func (c Context) etop() int {
return c.emax() - (c.precision() - 1)
}
// Abs sets z to the absolute value of x and returns z.
func (z *Big) Abs(x *Big) *Big {
return z.Context.Abs(z, x)
}
// Add sets z to x + y and returns z.
func (z *Big) Add(x, y *Big) *Big {
return z.Context.Add(z, x, y)
}