package value

import "github.com/google/go-cmp/cmp/internal/value"

Index

Functions

func IsZero

func IsZero(v reflect.Value) bool

IsZero reports whether v is the zero value. This does not rely on Interface and so can be used on unexported fields.

func SortKeys

func SortKeys(vs []reflect.Value) []reflect.Value

SortKeys sorts a list of map keys, deduplicating keys if necessary. The type of each value must be comparable.

func TypeString

func TypeString(t reflect.Type, qualified bool) string

TypeString is nearly identical to reflect.Type.String, but has an additional option to specify that full type names be used.

Types

type Pointer

type Pointer struct {
	// contains filtered or unexported fields
}

Pointer is an opaque typed pointer and is guaranteed to be comparable.

func PointerOf

func PointerOf(v reflect.Value) Pointer

PointerOf returns a Pointer from v, which must be a reflect.Ptr, reflect.Slice, or reflect.Map.

func (Pointer) IsNil

func (p Pointer) IsNil() bool

IsNil reports whether the pointer is nil.

func (Pointer) Uintptr

func (p Pointer) Uintptr() uintptr

Uintptr returns the pointer as a uintptr.

Source Files

name.go pointer_unsafe.go sort.go zero.go

Version
v0.5.6
Published
May 25, 2021
Platform
windows/amd64
Imports
6 packages
Last checked
6 hours ago

Tools for package owners.