package value

Import Path
	github.com/google/go-cmp/cmp/internal/value (on go.dev)

Dependency Relation
	imports 6 packages, and imported by one package


Package-Level Type Names (only one, which is exported)
/* sort exporteds by: | */
Pointer is an opaque typed pointer and is guaranteed to be comparable. IsNil reports whether the pointer is nil. Uintptr returns the pointer as a uintptr. func PointerOf(v reflect.Value) Pointer
Package-Level Functions (total 6, in which 4 are exported)
IsZero reports whether v is the zero value. This does not rely on Interface and so can be used on unexported fields.
PointerOf returns a Pointer from v, which must be a reflect.Ptr, reflect.Slice, or reflect.Map.
SortKeys sorts a list of map keys, deduplicating keys if necessary. The type of each value must be comparable.
TypeString is nearly identical to reflect.Type.String, but has an additional option to specify that full type names be used.