Documentation ¶
Overview ¶
This file has automatically been generated on Wed Feb 26 15:50:40 +05 2020. DO NOT EDIT.
Index ¶
- func AccuracyString(i big.Accuracy) string
- func ErrNaNError(err big.ErrNaN) string
- func FloatAbs(z *big.Float, x *big.Float) *big.Float
- func FloatAcc(x *big.Float) big.Accuracy
- func FloatAdd(z *big.Float, x, y *big.Float) *big.Float
- func FloatAppend(x *big.Float, buf []byte, fmt byte, prec int) []byte
- func FloatCmp(x *big.Float, y *big.Float) int
- func FloatCopy(z *big.Float, x *big.Float) *big.Float
- func FloatGobDecode(z *big.Float, buf []byte) error
- func FloatGobEncode(x *big.Float) ([]byte, error)
- func FloatInt(x *big.Float, z *big.Int) (*big.Int, big.Accuracy)
- func FloatIsInf(x *big.Float) bool
- func FloatIsInt(x *big.Float) bool
- func FloatMantExp(x *big.Float, mant *big.Float) int
- func FloatMarshalText(x *big.Float) ([]byte, error)
- func FloatMinPrec(x *big.Float) uint
- func FloatMode(x *big.Float) big.RoundingMode
- func FloatMul(z *big.Float, x, y *big.Float) *big.Float
- func FloatNeg(z *big.Float, x *big.Float) *big.Float
- func FloatParse(z *big.Float, s string, base int) (*big.Float, int, error)
- func FloatPrec(x *big.Float) uint
- func FloatQuo(z *big.Float, x, y *big.Float) *big.Float
- func FloatRat(x *big.Float, z *big.Rat) (*big.Rat, big.Accuracy)
- func FloatScan(z *big.Float, s fmt.ScanState, ch rune) error
- func FloatSet(z *big.Float, x *big.Float) *big.Float
- func FloatSetInf(z *big.Float, signbit bool) *big.Float
- func FloatSetInt(z *big.Float, x *big.Int) *big.Float
- func FloatSetMantExp(z *big.Float, mant *big.Float, exp int) *big.Float
- func FloatSetMode(z *big.Float, mode big.RoundingMode) *big.Float
- func FloatSetPrec(z *big.Float, prec uint) *big.Float
- func FloatSetRat(z *big.Float, x *big.Rat) *big.Float
- func FloatSetString(z *big.Float, s string) (*big.Float, bool)
- func FloatSign(x *big.Float) int
- func FloatSignbit(x *big.Float) bool
- func FloatSqrt(z *big.Float, x *big.Float) *big.Float
- func FloatString(x *big.Float) string
- func FloatSub(z *big.Float, x, y *big.Float) *big.Float
- func FloatText(x *big.Float, format byte, prec int) string
- func FloatUnmarshalText(z *big.Float, text []byte) error
- func IntAbs(z *big.Int, x *big.Int) *big.Int
- func IntAdd(z *big.Int, x, y *big.Int) *big.Int
- func IntAnd(z *big.Int, x, y *big.Int) *big.Int
- func IntAndNot(z *big.Int, x, y *big.Int) *big.Int
- func IntAppend(x *big.Int, buf []byte, base int) []byte
- func IntBinomial(z *big.Int, n, k int64) *big.Int
- func IntBit(x *big.Int, i int) uint
- func IntBitLen(x *big.Int) int
- func IntBits(x *big.Int) []big.Word
- func IntBytes(x *big.Int) []byte
- func IntCmp(x *big.Int, y *big.Int) int
- func IntCmpAbs(x *big.Int, y *big.Int) int
- func IntDiv(z *big.Int, x, y *big.Int) *big.Int
- func IntDivMod(z *big.Int, x, y, m *big.Int) (*big.Int, *big.Int)
- func IntExp(z *big.Int, x, y, m *big.Int) *big.Int
- func IntGCD(z *big.Int, x, y, a, b *big.Int) *big.Int
- func IntGobDecode(z *big.Int, buf []byte) error
- func IntGobEncode(x *big.Int) ([]byte, error)
- func IntLsh(z *big.Int, x *big.Int, n uint) *big.Int
- func IntMarshalJSON(x *big.Int) ([]byte, error)
- func IntMarshalText(x *big.Int) ([]byte, error)
- func IntMod(z *big.Int, x, y *big.Int) *big.Int
- func IntModInverse(z *big.Int, g, n *big.Int) *big.Int
- func IntModSqrt(z *big.Int, x, p *big.Int) *big.Int
- func IntMul(z *big.Int, x, y *big.Int) *big.Int
- func IntMulRange(z *big.Int, a, b int64) *big.Int
- func IntNeg(z *big.Int, x *big.Int) *big.Int
- func IntNot(z *big.Int, x *big.Int) *big.Int
- func IntOr(z *big.Int, x, y *big.Int) *big.Int
- func IntProbablyPrime(x *big.Int, n int) bool
- func IntQuo(z *big.Int, x, y *big.Int) *big.Int
- func IntQuoRem(z *big.Int, x, y, r *big.Int) (*big.Int, *big.Int)
- func IntRand(z *big.Int, rnd *rand.Rand, n *big.Int) *big.Int
- func IntRem(z *big.Int, x, y *big.Int) *big.Int
- func IntRsh(z *big.Int, x *big.Int, n uint) *big.Int
- func IntScan(z *big.Int, s fmt.ScanState, ch rune) error
- func IntSet(z *big.Int, x *big.Int) *big.Int
- func IntSetBit(z *big.Int, x *big.Int, i int, b uint) *big.Int
- func IntSetBits(z *big.Int, abs []big.Word) *big.Int
- func IntSetBytes(z *big.Int, buf []byte) *big.Int
- func IntSetString(z *big.Int, s string, base int) (*big.Int, bool)
- func IntSign(x *big.Int) int
- func IntSqrt(z *big.Int, x *big.Int) *big.Int
- func IntString(x *big.Int) string
- func IntSub(z *big.Int, x, y *big.Int) *big.Int
- func IntText(x *big.Int, base int) string
- func IntTrailingZeroBits(x *big.Int) uint
- func IntUnmarshalJSON(z *big.Int, text []byte) error
- func IntUnmarshalText(z *big.Int, text []byte) error
- func IntXor(z *big.Int, x, y *big.Int) *big.Int
- func Jacobi(x, y *big.Int) int
- func NewFloat(x float64) *big.Float
- func NewInt(x int64) *big.Int
- func NewRat(a, b int64) *big.Rat
- func ParseFloat(s string, base int, prec uint, mode big.RoundingMode) (*big.Float, int, error)
- func RatAbs(z *big.Rat, x *big.Rat) *big.Rat
- func RatAdd(z *big.Rat, x, y *big.Rat) *big.Rat
- func RatCmp(x *big.Rat, y *big.Rat) int
- func RatDenom(x *big.Rat) *big.Int
- func RatFloatString(x *big.Rat, prec int) string
- func RatGobDecode(z *big.Rat, buf []byte) error
- func RatGobEncode(x *big.Rat) ([]byte, error)
- func RatInv(z *big.Rat, x *big.Rat) *big.Rat
- func RatIsInt(x *big.Rat) bool
- func RatMarshalText(x *big.Rat) ([]byte, error)
- func RatMul(z *big.Rat, x, y *big.Rat) *big.Rat
- func RatNeg(z *big.Rat, x *big.Rat) *big.Rat
- func RatNum(x *big.Rat) *big.Int
- func RatQuo(z *big.Rat, x, y *big.Rat) *big.Rat
- func RatRatString(x *big.Rat) string
- func RatScan(z *big.Rat, s fmt.ScanState, ch rune) error
- func RatSet(z *big.Rat, x *big.Rat) *big.Rat
- func RatSetFrac(z *big.Rat, a, b *big.Int) *big.Rat
- func RatSetInt(z *big.Rat, x *big.Int) *big.Rat
- func RatSetString(z *big.Rat, s string) (*big.Rat, bool)
- func RatSign(x *big.Rat) int
- func RatString(x *big.Rat) string
- func RatSub(z *big.Rat, x, y *big.Rat) *big.Rat
- func RatUnmarshalText(z *big.Rat, text []byte) error
- func RoundingModeString(i big.RoundingMode) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AccuracyString ¶
func ErrNaNError ¶
func FloatIsInf ¶
func FloatIsInt ¶
func FloatMinPrec ¶
func FloatSetMode ¶
func FloatSignbit ¶
func FloatString ¶
func IntTrailingZeroBits ¶
func ParseFloat ¶
func RatRatString ¶
func RoundingModeString ¶
func RoundingModeString(i big.RoundingMode) string
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.