Dumper dumps verbose information on a value. If a layer type implements Dumper, then its LayerDump() string will include the results in its output.
| 220 | // Dumper dumps verbose information on a value. If a layer type implements |
| 221 | // Dumper, then its LayerDump() string will include the results in its output. |
| 222 | type Dumper interface { |
| 223 | Dump() string |
| 224 | } |
| 225 | |
| 226 | // LayerDump outputs a very verbose string representation of a layer. Its |
| 227 | // output is a concatenation of LayerString(l) and hex.Dump(l.LayerContents()). |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…