package value
import "github.com/google/go-cmp/cmp/internal/value"
Package value provides functionality for reflect.Value types.
Index ¶
- func Format(v reflect.Value, useStringer bool) string
- func SortKeys(vs []reflect.Value) []reflect.Value
Functions ¶
func Format ¶
Format formats the value v as a string.
This is similar to fmt.Sprintf("%+v", v) except this:
- Prints the type unless it can be elided
- Avoids printing struct fields that are zero
- Prints a nil-slice as being nil, not empty
- Prints map entries in deterministic order
func SortKeys ¶
SortKeys sorts a list of map keys, deduplicating keys if necessary. The type of each value must be comparable.
Source Files ¶
- Version
- v0.1.0
- Published
- Aug 3, 2017
- Platform
- windows/amd64
- Imports
- 7 packages
- Last checked
- 6 hours ago –
Tools for package owners.