FormatDecimal wraps global Bytes's FormatDecimal function.
(value int64)
| 207 | |
| 208 | // FormatDecimal wraps global Bytes's FormatDecimal function. |
| 209 | func FormatDecimal(value int64) string { |
| 210 | return global.FormatDecimal(value) |
| 211 | } |
| 212 | |
| 213 | // Parse wraps global Bytes's Parse function. |
| 214 | func Parse(value string) (int64, error) { |
searching dependent graphs…