Float32s constructs a field that carries a slice of floats.
(key string, nums []float32)
| 67 | |
| 68 | // Float32s constructs a field that carries a slice of floats. |
| 69 | func Float32s(key string, nums []float32) Field { |
| 70 | return Array(key, float32s(nums)) |
| 71 | } |
| 72 | |
| 73 | // Ints constructs a field that carries a slice of integers. |
| 74 | func Ints(key string, nums []int) Field { |