Int32s constructs a field that carries a slice of integers.
(key string, nums []int32)
| 82 | |
| 83 | // Int32s constructs a field that carries a slice of integers. |
| 84 | func Int32s(key string, nums []int32) Field { |
| 85 | return Array(key, int32s(nums)) |
| 86 | } |
| 87 | |
| 88 | // Int16s constructs a field that carries a slice of integers. |
| 89 | func Int16s(key string, nums []int16) Field { |