github.com/primecitizens/pcz/std@v0.2.1/math/mod.go (about) 1 // Copyright 2009-2010 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package math 6 7 /* 8 Floating-point mod function. 9 */ 10 11 // Mod returns the floating-point remainder of x/y. 12 // The magnitude of the result is less than y and its 13 // sign agrees with that of x. 14 // 15 // Special cases are: 16 // 17 // Mod(±Inf, y) = NaN 18 // Mod(NaN, y) = NaN 19 // Mod(x, 0) = NaN 20 // Mod(x, ±Inf) = x 21 // Mod(x, NaN) = NaN 22 func Mod(x, y float64) float64 { 23 return mod(x, y) 24 } 25 26 func mod(x, y float64) float64 { 27 if y == 0 || IsInf(x, 0) || IsNaN(x) || IsNaN(y) { 28 return NaN() 29 } 30 y = Abs(y) 31 32 yfr, yexp := Frexp(y) 33 r := x 34 if x < 0 { 35 r = -x 36 } 37 38 for r >= y { 39 rfr, rexp := Frexp(r) 40 if rfr < yfr { 41 rexp = rexp - 1 42 } 43 r = r - Ldexp(y, rexp-yexp) 44 } 45 if x < 0 { 46 r = -r 47 } 48 return r 49 }