Uints64 adds the field key with i as a []int64 to the *Event context.
(key string, i []uint64)
| 705 | |
| 706 | // Uints64 adds the field key with i as a []int64 to the *Event context. |
| 707 | func (e *Event) Uints64(key string, i []uint64) *Event { |
| 708 | if e == nil { |
| 709 | return e |
| 710 | } |
| 711 | e.buf = enc.AppendUints64(enc.AppendKey(e.buf, key), i) |
| 712 | return e |
| 713 | } |
| 714 | |
| 715 | // Float32 adds the field key with f as a float32 to the *Event context. |
| 716 | func (e *Event) Float32(key string, f float32) *Event { |