Humanable is a quantity that can be made human-readable using `Humaner.Format()`.
| 7 | // Humanable is a quantity that can be made human-readable using |
| 8 | // `Humaner.Format()`. |
| 9 | type Humanable interface { |
| 10 | // ToUint64 returns the value as a uint64, and a boolean telling |
| 11 | // whether it overflowed. |
| 12 | ToUint64() (uint64, bool) |
| 13 | } |
| 14 | |
| 15 | // Humaner is an object that can format a Humanable in human-readable |
| 16 | // format. |
no outgoing calls
no test coverage detected