Int32 handles encoding of 32bit integer values according to the ValueEncoder configuration.
(field string, val int32)
| 124 | |
| 125 | // Int32 handles encoding of 32bit integer values according to the ValueEncoder configuration. |
| 126 | func (m *ValueEncoder) Int32(field string, val int32) string { |
| 127 | return m.Float64(field, float64(val)) |
| 128 | } |
| 129 | |
| 130 | // Uint32 handles encoding of unsigned 32bit integer values according to the ValueEncoder configuration. |
| 131 | func (m *ValueEncoder) Uint32(field string, val uint32) string { |
no test coverage detected