all: Format files with gofmt

This commit is contained in:
Oleksandr Redko
2023-10-04 22:25:43 +03:00
committed by Bjørn Erik Pedersen
parent 37a2d5eb4e
commit 274852bcf2
4 changed files with 23 additions and 18 deletions

View File

@@ -20,19 +20,20 @@ const (
// 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 {
// Round is a faster implementation of:
//
// func Round(x float64) float64 {
// t := Trunc(x)
// if Abs(x-t) >= 0.5 {
// return t + Copysign(1, x)
// }
// return t
// }
// func Round(x float64) float64 {
// t := Trunc(x)
// if Abs(x-t) >= 0.5 {
// return t + Copysign(1, x)
// }
// return t
// }
const (
signMask = 1 << 63
fracMask = 1<<shift - 1