UIntElement writes a uint element.
(value uint)
| 243 | |
| 244 | // UIntElement writes a uint element. |
| 245 | func (jw *JSONWriter) UIntElement(value uint) { jw.UInt64Element(uint64(value)) } |
| 246 | |
| 247 | // UInt8Field writes a uint8 field. |
| 248 | func (jw *JSONWriter) UInt8Field(key string, value uint8) { jw.UInt64Field(key, uint64(value)) } |