Uint64 handles encoding of unsigned 64bit integer values according to the ValueEncoder configuration.
(field string, val uint64)
| 134 | |
| 135 | // Uint64 handles encoding of unsigned 64bit integer values according to the ValueEncoder configuration. |
| 136 | func (m *ValueEncoder) Uint64(field string, val uint64) string { |
| 137 | return m.Float64(field, float64(val)) |
| 138 | } |
| 139 | |
| 140 | const ( |
| 141 | valueTrue = "1.0000000000" |
no test coverage detected