Ints constructs a field that carries a slice of integers.
(key string, nums []int)
| 72 | |
| 73 | // Ints constructs a field that carries a slice of integers. |
| 74 | func Ints(key string, nums []int) Field { |
| 75 | return Array(key, ints(nums)) |
| 76 | } |
| 77 | |
| 78 | // Int64s constructs a field that carries a slice of integers. |
| 79 | func Int64s(key string, nums []int64) Field { |