Int64Field writes an int64 field.
(key string, value int64)
| 220 | |
| 221 | // Int64Field writes an int64 field. |
| 222 | func (jw *JSONWriter) Int64Field(key string, value int64) { |
| 223 | jw.beforeField(key) |
| 224 | jw.int64Value(value) |
| 225 | } |
| 226 | |
| 227 | // Int64Element writes an int64 element. |
| 228 | func (jw *JSONWriter) Int64Element(value int64) { |