func math.NaN

36 uses

	math (current package)
		acosh.go#L54: 		return NaN()
		asin.go#L36: 		return NaN() // special case
		atan2.go#L40: 		return NaN()
		atanh.go#L59: 		return NaN()
		bits.go#L31: func NaN() float64 { return Float64frombits(uvnan) }
		dim.go#L48: 		return NaN()
		dim.go#L80: 		return NaN()
		erf.go#L203: 		return NaN()
		erf.go#L284: 		return NaN()
		erfinv.go#L82: 		return NaN()
		gamma.go#L135: 		return NaN()
		hypot.go#L32: 		return NaN()
		j0.go#L173: 		return NaN()
		j1.go#L172: 		return NaN()
		jn.go#L238: 		return NaN()
		log.go#L105: 		return NaN()
		log1p.go#L123: 		return NaN()
		mod.go#L30: 		return NaN()
		nextafter.go#L16: 		r = float32(NaN())
		nextafter.go#L38: 		r = NaN()
		pow.go#L52: 		return NaN()
		pow.go#L93: 		return NaN()
		remainder.go#L52: 		return NaN()
		sin.go#L133: 		return NaN()
		sin.go#L201: 		return NaN()
		sincos.go#L26: 		return NaN(), NaN()
		sqrt.go#L110: 		return NaN()
		tan.go#L100: 		return NaN()

	github.com/golang/protobuf/jsonpb
		decode.go#L452: 	`"NaN"`:       math.NaN(),

	github.com/valyala/fastjson/fastfloat
		parse.go#L515: var nan = math.NaN()

	google.golang.org/protobuf/encoding/protojson
		decode.go#L417: 				return protoreflect.ValueOfFloat32(float32(math.NaN())), true
		decode.go#L419: 			return protoreflect.ValueOfFloat64(math.NaN()), true

	google.golang.org/protobuf/internal/encoding/defval
		default.go#L96: 			v = math.NaN()

	google.golang.org/protobuf/internal/encoding/text
		decode_token.go#L358: 	"nan":       math.NaN(),

	strconv
		atof.go#L68: 			return math.NaN(), 3, true