Int16s constructs a field that carries a slice of integers.
(key string, nums []int16)
| 87 | |
| 88 | // Int16s constructs a field that carries a slice of integers. |
| 89 | func Int16s(key string, nums []int16) Field { |
| 90 | return Array(key, int16s(nums)) |
| 91 | } |
| 92 | |
| 93 | // Int8s constructs a field that carries a slice of integers. |
| 94 | func Int8s(key string, nums []int8) Field { |