mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
16 lines
263 B
Go
16 lines
263 B
Go
|
// +build go1.10
|
||
|
|
||
|
package sdkmath
|
||
|
|
||
|
import "math"
|
||
|
|
||
|
// Round returns the nearest integer, rounding half away from zero.
|
||
|
//
|
||
|
// Special cases are:
|
||
|
// Round(±0) = ±0
|
||
|
// Round(±Inf) = ±Inf
|
||
|
// Round(NaN) = NaN
|
||
|
func Round(x float64) float64 {
|
||
|
return math.Round(x)
|
||
|
}
|