Fdump formats and displays the passed arguments to io.Writer w. It formats exactly the same as Dump.
(w io.Writer, a ...interface{})
| 244 | // Fdump formats and displays the passed arguments to io.Writer w. It formats |
| 245 | // exactly the same as Dump. |
| 246 | func (c *ConfigState) Fdump(w io.Writer, a ...interface{}) { |
| 247 | fdump(c, w, a...) |
| 248 | } |
| 249 | |
| 250 | /* |
| 251 | Dump displays the passed parameters to standard out with newlines, customizable |