Format returns a pretty-printed representation of the dmap
(long bool)
| 18 | |
| 19 | // Format returns a pretty-printed representation of the dmap |
| 20 | func (m dmap) Format(long bool) string { |
| 21 | return formatMap(m, []interface{}{}, long) |
| 22 | } |
| 23 | |
| 24 | // Format returns a pretty-printed representation of the value |
| 25 | func (v value) Format(long bool) string { |
nothing calls this directly
no test coverage detected