blob: ecd7041f4d1d5d3f5145e06190f1688efceafeed [file] [log] [blame]
// Package pretty pretty-prints Go structures.
//
// This package uses reflection to examine a Go value and can
// print out in a nice, aligned fashion. It supports three
// modes (normal, compact, and extended) for advanced use.
//
// See the Reflect and Print examples for what the output looks like.
//
// TODO:
// - Catch cycles
// - Compare function
// - Logging helpers
// - Change Options to Config
package pretty