Float64s constructs a field that carries a slice of floats.
(key string, nums []float64)
| 62 | |
| 63 | // Float64s constructs a field that carries a slice of floats. |
| 64 | func Float64s(key string, nums []float64) Field { |
| 65 | return Array(key, float64s(nums)) |
| 66 | } |
| 67 | |
| 68 | // Float32s constructs a field that carries a slice of floats. |
| 69 | func Float32s(key string, nums []float32) Field { |