Int64s constructs a field that carries a slice of integers.
(key string, nums []int64)
| 77 | |
| 78 | // Int64s constructs a field that carries a slice of integers. |
| 79 | func Int64s(key string, nums []int64) Field { |
| 80 | return Array(key, int64s(nums)) |
| 81 | } |
| 82 | |
| 83 | // Int32s constructs a field that carries a slice of integers. |
| 84 | func Int32s(key string, nums []int32) Field { |