Documentation
¶
Overview ¶
Package format provides functionality for pretty-printing CUE values. These types need to be in a separate package to avoid import cycles.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Printer ¶
type Printer interface {
// ReplaceArg is a function that may be called to replace arguments to
// errors. This is mostly used for cycle detection.
ReplaceArg(x any) (r any, wasReplaced bool)
}
Printer is the interface used to print CUE values. The only implementation so far is the one in internal/core/debug. Note that most packages cannot directly import the debug package.
Click to show internal directories.
Click to hide internal directories.