* NewFormatter returns a custom formatter that satisfies the fmt.Formatter interface. As a result, it integrates cleanly with standard fmt package printing functions. The formatter is useful for inline printing of smaller data types similar to the standard %v format specifier. The custom formatte
(v interface{})
| 415 | Printf, Println, or Fprintf. |
| 416 | */ |
| 417 | func NewFormatter(v interface{}) fmt.Formatter { |
| 418 | return newFormatter(&Config, v) |
| 419 | } |
no test coverage detected
searching dependent graphs…