Int16Field writes an int16 field.
(key string, value int16)
| 208 | |
| 209 | // Int16Field writes an int16 field. |
| 210 | func (jw *JSONWriter) Int16Field(key string, value int16) { jw.Int64Field(key, int64(value)) } |
| 211 | |
| 212 | // Int16Element writes an int16 element. |
| 213 | func (jw *JSONWriter) Int16Element(value int16) { jw.Int64Element(int64(value)) } |