Int8Field writes an int8 field.
(key string, value int8)
| 202 | |
| 203 | // Int8Field writes an int8 field. |
| 204 | func (jw *JSONWriter) Int8Field(key string, value int8) { jw.Int64Field(key, int64(value)) } |
| 205 | |
| 206 | // Int8Element writes an int8 element. |
| 207 | func (jw *JSONWriter) Int8Element(value int8) { jw.Int64Element(int64(value)) } |