# Functions
Errorf formats according to a format specifier and returns the string as a value that satisfies error.
Fprint formats using the default formats for its operands and writes to w.
Fprintf formats according to a format specifier and writes to w.
Fprintln formats using the default formats for its operands and writes to w.
No description provided by the author
No description provided by the author
No description provided by the author
Print formats using the default formats for its operands and writes to standard output.
Printf formats according to a format specifier and writes to standard output.
Println formats using the default formats for its operands and writes to standard output.
Sprint formats using the default formats for its operands and returns the resulting string.
Sprintf formats according to a format specifier and returns the resulting string.
Sprintln formats using the default formats for its operands and returns the resulting string.
# Interfaces
Formatter is the interface implemented by values with a custom formatter.
GoStringer is implemented by any value that has a GoString method, which defines the Go syntax for that value.
State represents the printer state passed to custom formatters.
Stringer is implemented by any value that has a String method, which defines the ``native'' format for that value.
# Type aliases
No description provided by the author