UInt32Field writes a uint32 field.
(key string, value uint32)
| 258 | |
| 259 | // UInt32Field writes a uint32 field. |
| 260 | func (jw *JSONWriter) UInt32Field(key string, value uint32) { jw.UInt64Field(key, uint64(value)) } |
| 261 | |
| 262 | // UInt32Element writes a uint32 element. |
| 263 | func (jw *JSONWriter) UInt32Element(value uint32) { jw.UInt64Element(uint64(value)) } |