Documentation
¶
Overview ¶
Package xmath extends the Go standard library package math by providing additional mathematical functions.
Index ¶
- func DimInt(x, y int) int
- func DimInt64(x, y int64) int64
- func DimUint(x, y uint) uint
- func DimUint64(x, y uint64) uint64
- func MaxInt(x, y int) intdeprecated
- func MaxInt64(x, y int64) int64deprecated
- func MaxUint(x, y uint) uintdeprecated
- func MaxUint64(x, y uint64) uint64deprecated
- func MinInt(x, y int) intdeprecated
- func MinInt64(x, y int64) int64deprecated
- func MinUint(x, y uint) uintdeprecated
- func MinUint64(x, y uint64) uint64deprecated
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DimInt ¶
DimInt returns the maximum of x-y or 0 with x, y and the return value of type int.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.DimInt(4, -2)) fmt.Printf("%d\n", xmath.DimInt(-4, 2)) }
Output: 6 0
func DimInt64 ¶
DimInt64 returns the maximum of x-y or 0 with x, y and the return value of type int64.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.DimInt64(4, -2)) fmt.Printf("%d\n", xmath.DimInt64(-4, 2)) }
Output: 6 0
func DimUint ¶
DimUint returns the maximum of x-y or 0 with x, y and the return value of type uint.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.DimUint(4, 2)) fmt.Printf("%d\n", xmath.DimUint(4, 6)) }
Output: 2 0
func DimUint64 ¶
DimUint64 returns the maximum of x-y or 0 with x, y and the return value of type uint64.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.DimUint64(4, 2)) fmt.Printf("%d\n", xmath.DimUint64(4, 6)) }
Output: 2 0
func MaxInt
deprecated
MaxInt returns the larger of x or y with x, y and the return value of type int.
Deprecated: From Go 1.21, use the built-in max function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MaxInt(4, 2)) fmt.Printf("%d\n", xmath.MaxInt(4, -2)) fmt.Printf("%d\n", xmath.MaxInt(-4, -2)) }
Output: 4 4 -2
func MaxInt64
deprecated
MaxInt64 returns the larger of x or y with x, y and the return value of type int64.
Deprecated: From Go 1.21, use the built-in max function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MaxInt64(4, 2)) fmt.Printf("%d\n", xmath.MaxInt64(4, -2)) fmt.Printf("%d\n", xmath.MaxInt64(-4, -2)) }
Output: 4 4 -2
func MaxUint
deprecated
MaxUint returns the larger of x or y with x, y and the return value of type uint.
Deprecated: From Go 1.21, use the built-in max function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MaxUint(4, 2)) }
Output: 4
func MaxUint64
deprecated
MaxUint64 returns the larger of x or y with x, y and the return value of type uint64.
Deprecated: From Go 1.21, use the built-in max function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MaxUint64(4, 2)) }
Output: 4
func MinInt
deprecated
MinInt returns the smaller of x or y with x, y and the return value of type int.
Deprecated: From Go 1.21, use the built-in min function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MinInt(4, 2)) fmt.Printf("%d\n", xmath.MinInt(4, -2)) fmt.Printf("%d\n", xmath.MinInt(-4, -2)) }
Output: 2 -2 -4
func MinInt64
deprecated
MinInt64 returns the smaller of x or y with x, y and the return value of type int64.
Deprecated: From Go 1.21, use the built-in min function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MinInt64(4, 2)) fmt.Printf("%d\n", xmath.MinInt64(4, -2)) fmt.Printf("%d\n", xmath.MinInt64(-4, -2)) }
Output: 2 -2 -4
func MinUint
deprecated
MinUint returns the smaller of x or y with x, y and the return value of type uint.
Deprecated: From Go 1.21, use the built-in min function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MinUint(4, 2)) }
Output: 2
func MinUint64
deprecated
MinUint64 returns the smaller of x or y with x, y and the return value of type uint64.
Deprecated: From Go 1.21, use the built-in min function instead.
Example ¶
package main import ( "fmt" "github.com/jlourenc/xgo/xmath" ) func main() { fmt.Printf("%d\n", xmath.MinUint64(4, 2)) }
Output: 2
Types ¶
This section is empty.