func math.Abs

20 uses

	math (current package)
		abs.go#L13: func Abs(x float64) float64 {
		bits.go#L58: 	if Abs(x) < SmallestNormal {
		gamma.go#L145: 	q := Abs(x)
		gamma.go#L169: 		absz := Abs(z)
		hypot.go#L28: 	p, q = Abs(p), Abs(q)
		j0.go#L103: 	x = Abs(x)
		jn.go#L199: 			tmp = tmp * Log(Abs(v*tmp))
		lgamma.go#L225: 		nadj = Log(Pi / Abs(t*x))
		log1p.go#L131: 	absx := Abs(x)
		mod.go#L33: 	y = Abs(y)
		pow.go#L8: 	if Abs(x) >= (1 << 53) {
		pow.go#L80: 		case (Abs(x) < 1) == IsInf(y, 1):
		pow.go#L101: 	yi, yf := Modf(Abs(y))
		pow.go#L111: 		case (Abs(x) < 1) == (y > 0):
		sin.go#L139: 	x = Abs(x)
		sinh.go#L87: 	x = Abs(x)
		tanh.go#L84: 	z := Abs(x)

	encoding/json
		encode.go#L543: 	abs := math.Abs(f)

	github.com/go-faster/jx
		w_float_bits.go#L44: 	abs := math.Abs(v)