UInt64Element writes a uint64 element.
(value uint64)
| 270 | |
| 271 | // UInt64Element writes a uint64 element. |
| 272 | func (jw *JSONWriter) UInt64Element(value uint64) { |
| 273 | jw.beforeElement() |
| 274 | jw.uint64Value(value) |
| 275 | } |
| 276 | |
| 277 | func (jw *JSONWriter) uint64Value(value uint64) { |
| 278 | var buf [64]byte |