Documentation ¶
Index ¶
- Constants
- func Abs(x int) int
- func Cbrt(x int) int
- func Copysign(x, y int) int
- func Dim(x, y int) int
- func Exp2(x int) int
- func Hypot(p, q int) int
- func Intbits(i int) uint
- func Intfrombits(b uint) int
- func Log(x int) int
- func Max(x, y int) int
- func Min(x, y int) int
- func Mod(x, y int) int
- func Nextafter(x, y int) (r int)
- func Pow(x, y int) int
- func Pow10(e int) int
- func Signbit(x int) bool
- func Sqrt(x int) int
Constants ¶
View Source
const ( MaxInt8 = 1<<7 - 1 MinInt8 = -1 << 7 MaxInt16 = 1<<15 - 1 MinInt16 = -1 << 15 MaxInt32 = 1<<31 - 1 MinInt32 = -1 << 31 MaxInt64 = 1<<63 - 1 MinInt64 = -1 << 63 MaxUint8 = 1<<8 - 1 MaxUint16 = 1<<16 - 1 MaxUint32 = 1<<32 - 1 MaxUint64 = 1<<64 - 1 )
Integer limit values.
Variables ¶
This section is empty.
Functions ¶
func Hypot ¶
Hypot returns Sqrt(p*p + q*q), taking care to avoid unnecessary overflow and underflow.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.