Home | History | Annotate | Download | only in math

Lines Matching defs:Max

28 // Max returns the larger of x or y.
31 // Max(x, +Inf) = Max(+Inf, x) = +Inf
32 // Max(x, NaN) = Max(NaN, x) = NaN
33 // Max(+0, ±0) = Max(±0, +0) = +0
34 // Max(-0, -0) = -0
35 func Max(x, y float64) float64
37 func max(x, y float64) float64 {