xmath

package
v1.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 21, 2024 License: BSD-3-Clause Imports: 0 Imported by: 0

Documentation

Overview

Package xmath extends the Go standard library package math by providing additional mathematical functions.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func DimInt

func DimInt(x, y int) int

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

func DimInt64(x, y int64) int64

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

func DimUint(x, y uint) uint

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

func DimUint64(x, y uint64) uint64

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

func MaxInt(x, y int) int

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

func MaxInt64(x, y int64) int64

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

func MaxUint(x, y uint) uint

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

func MaxUint64(x, y uint64) uint64

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

func MinInt(x, y int) int

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

func MinInt64(x, y int64) int64

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

func MinUint(x, y uint) uint

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

func MinUint64(x, y uint64) uint64

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL