Int handles encoding of integer values according to the ValueEncoder configuration.
(field string, val int)
| 114 | |
| 115 | // Int handles encoding of integer values according to the ValueEncoder configuration. |
| 116 | func (m *ValueEncoder) Int(field string, val int) string { |
| 117 | return m.Float64(field, float64(val)) |
| 118 | } |
| 119 | |
| 120 | // Int64 handles encoding of 64bit integer values according to the ValueEncoder configuration. |
| 121 | func (m *ValueEncoder) Int64(field string, val int64) string { |