UInt8Element writes a uint8 element.
(value uint8)
| 249 | |
| 250 | // UInt8Element writes a uint8 element. |
| 251 | func (jw *JSONWriter) UInt8Element(value uint8) { jw.UInt64Element(uint64(value)) } |
| 252 | |
| 253 | // UInt16Field writes a uint16 field. |
| 254 | func (jw *JSONWriter) UInt16Field(key string, value uint16) { jw.UInt64Field(key, uint64(value)) } |