5 lines
126 B
Go
5 lines
126 B
Go
|
package chart
|
||
|
|
||
|
// Formatter is a function that takes a value and produces a string.
|
||
|
type Formatter func(v interface{}) string
|