summaryrefslogtreecommitdiff
path: root/libgo/go/math/dim.go
blob: d2eb52f3bf1d331c7f916aafb38fa7cc12968bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package math

// Dim returns the maximum of x-y or 0.
func Dim(x, y float64) float64 {
	if x > y {
		return x - y
	}
	return 0
}

// Max returns the larger of x or y.
func Max(x, y float64) float64 {
	if x > y {
		return x
	}
	return y
}

// Min returns the smaller of x or y.
func Min(x, y float64) float64 {
	if x < y {
		return x
	}
	return y
}