Int32Field writes an int32 field.
(key string, value int32)
| 214 | |
| 215 | // Int32Field writes an int32 field. |
| 216 | func (jw *JSONWriter) Int32Field(key string, value int32) { jw.Int64Field(key, int64(value)) } |
| 217 | |
| 218 | // Int32Element writes an int32 element. |
| 219 | func (jw *JSONWriter) Int32Element(value int32) { jw.Int64Element(int64(value)) } |