UInt16Field writes a uint16 field.
(key string, value uint16)
| 252 | |
| 253 | // UInt16Field writes a uint16 field. |
| 254 | func (jw *JSONWriter) UInt16Field(key string, value uint16) { jw.UInt64Field(key, uint64(value)) } |
| 255 | |
| 256 | // UInt16Element writes a uint16 element. |
| 257 | func (jw *JSONWriter) UInt16Element(value uint16) { jw.UInt64Element(uint64(value)) } |