func math.Abs

21 uses

	math (current package)
		abs.go#L12: func Abs(x float64) float64 {
		bits.go#L58: 	if Abs(x) < SmallestNormal {
		gamma.go#L144: 	q := Abs(x)
		gamma.go#L168: 		absz := Abs(z)
		hypot.go#L29: 	p, q = Abs(p), Abs(q)
		j0.go#L102: 	x = Abs(x)
		jn.go#L198: 			tmp = tmp * Log(Abs(v*tmp))
		lgamma.go#L224: 		nadj = Log(Pi / Abs(t*x))
		log1p.go#L125: 	absx := Abs(x)
		mod.go#L27: 	y = Abs(y)
		pow.go#L65: 		case (Abs(x) < 1) == IsInf(y, 1):
		pow.go#L86: 	yi, yf := Modf(Abs(y))
		pow.go#L96: 		case (Abs(x) < 1) == (y > 0):
		sin.go#L133: 	x = Abs(x)
		sinh.go#L75: 	x = Abs(x)
		tanh.go#L78: 	z := Abs(x)

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

	src.elv.sh/pkg/eval/evaltest
		matchers.go#L28: 	return math.Abs(a-b) <= threshold

	src.elv.sh/pkg/eval/mods/math
		math.go#L493: 	"abs":           math.Abs,

	testing
		benchmark.go#L458: 	switch y := math.Abs(x); {