Int64 handles encoding of 64bit integer values according to the ValueEncoder configuration.
(field string, val int64)
| 119 | |
| 120 | // Int64 handles encoding of 64bit integer values according to the ValueEncoder configuration. |
| 121 | func (m *ValueEncoder) Int64(field string, val int64) string { |
| 122 | return m.Float64(field, float64(val)) |
| 123 | } |
| 124 | |
| 125 | // Int32 handles encoding of 32bit integer values according to the ValueEncoder configuration. |
| 126 | func (m *ValueEncoder) Int32(field string, val int32) string { |