unsigned integers UIntField writes a uint field.
(key string, value uint)
| 240 | |
| 241 | // UIntField writes a uint field. |
| 242 | func (jw *JSONWriter) UIntField(key string, value uint) { jw.UInt64Field(key, uint64(value)) } |
| 243 | |
| 244 | // UIntElement writes a uint element. |
| 245 | func (jw *JSONWriter) UIntElement(value uint) { jw.UInt64Element(uint64(value)) } |