Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Dump ¶
Dump converts an arbitrary value to a scalar value.
The purpose of this function is to provide an alternative to fmt verbs such as %#v or %+v that returns a value in a more human-readable format.
- Simple types, like numbers and strings and booleans, are returned as-is.
- For types that implement json.Marshaler, the result of MarshalJSON is returned.
- For types that implement encoding.TextMarshaler, the result of MarshalText is returned.
- For types that implement fmt.Stringer, the result of String is returned.
- Byte slices and arrays are represented as hex strings.
- For types that implement error, the result of Error is returned.
- In maps, slices, and arrays, each element is recursively normalized according to these rules and then represented as a JSON.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.