gcc/libgo/go/math/dim.go
Ian Lance Taylor d8f412571f Update Go library to last weekly.
From-SVN: r180552
2011-10-26 23:57:58 +00:00

30 lines
508 B
Go

// 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
}