Ints16 adds the field key with i as a []int16 to the *Event context.
(key string, i []int16)
| 579 | |
| 580 | // Ints16 adds the field key with i as a []int16 to the *Event context. |
| 581 | func (e *Event) Ints16(key string, i []int16) *Event { |
| 582 | if e == nil { |
| 583 | return e |
| 584 | } |
| 585 | e.buf = enc.AppendInts16(enc.AppendKey(e.buf, key), i) |
| 586 | return e |
| 587 | } |
| 588 | |
| 589 | // Int32 adds the field key with i as a int32 to the *Event context. |
| 590 | func (e *Event) Int32(key string, i int32) *Event { |