Times constructs a field that carries a slice of time.Times.
(key string, ts []time.Time)
| 228 | |
| 229 | // Times constructs a field that carries a slice of time.Times. |
| 230 | func Times(key string, ts []time.Time) Field { |
| 231 | return Array(key, times(ts)) |
| 232 | } |
| 233 | |
| 234 | // Uints constructs a field that carries a slice of unsigned integers. |
| 235 | func Uints(key string, nums []uint) Field { |