* Dump displays the passed parameters to standard out with newlines, customizable indentation, and additional debug information such as complete types and all pointer addresses used to indirect to the final value. It provides the following features over the built-in printing facilities provided by
(a ...interface{})
| 505 | get the formatted result as a string. |
| 506 | */ |
| 507 | func Dump(a ...interface{}) { |
| 508 | fdump(&Config, os.Stdout, a...) |
| 509 | } |
searching dependent graphs…