UInt64Field writes a uint64 field.
(key string, value uint64)
| 264 | |
| 265 | // UInt64Field writes a uint64 field. |
| 266 | func (jw *JSONWriter) UInt64Field(key string, value uint64) { |
| 267 | jw.beforeField(key) |
| 268 | jw.uint64Value(value) |
| 269 | } |
| 270 | |
| 271 | // UInt64Element writes a uint64 element. |
| 272 | func (jw *JSONWriter) UInt64Element(value uint64) { |