func math.Mod

5 uses

	math (current package)
		lgamma.go#L337: 		x = Mod(x, 2)
		mod.go#L21: func Mod(x, y float64) float64
		remainder.go#L67: 		x = Mod(x, y+y) // now x < 2y

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L9572: 	i = int32(uint32(math.Mod(math.Abs(f), 4294967296)))
		js_parser.go#L10317: 					return js_ast.Expr{Loc: expr.Loc, Data: &js_ast.ENumber{Value: math.Mod(left, right)}}, exprOut{}