Format returns a pretty-printed representation of the slice
(long bool)
| 13 | |
| 14 | // Format returns a pretty-printed representation of the slice |
| 15 | func (s slice) Format(long bool) string { |
| 16 | return formatSlice(s, []interface{}{}, long) |
| 17 | } |
| 18 | |
| 19 | // Format returns a pretty-printed representation of the dmap |
| 20 | func (m dmap) Format(long bool) string { |
nothing calls this directly
no test coverage detected