Fdump formats and displays the passed arguments to io.Writer w. It formats exactly the same as Dump.
(w io.Writer, a ...interface{})
| 470 | // Fdump formats and displays the passed arguments to io.Writer w. It formats |
| 471 | // exactly the same as Dump. |
| 472 | func Fdump(w io.Writer, a ...interface{}) { |
| 473 | fdump(&Config, w, a...) |
| 474 | } |
| 475 | |
| 476 | // Sdump returns a string with the passed arguments formatted exactly the same |
| 477 | // as Dump. |