From 16205a3534a2787cef0bd048547211e1de350fef Mon Sep 17 00:00:00 2001
From: Russ Cox float32
, float64
, or uint
not
int32
or string
.
+There are no constants denoting the IEEE-754 infinity and not-a-number values,
+but the math
package's
+Inf,
+NaN,
+IsInf, and
+IsNaN
+functions return and test for those values at run time.
+
Implementation restriction: A compiler may implement numeric constants by choosing
an internal representation with at least twice as many bits as any machine type;
@@ -4681,7 +4691,7 @@ value and returns both the type and the address of the copy.
Unreflect
inverts Reflect
,
creating an
interface value from a type and address.
-The reflect
package built on these primitives
+The reflect
package built on these primitives
provides a safe, more convenient way to inspect interface values.