Complex64s constructs a field that carries a slice of complex numbers.
(key string, nums []complex64)
| 52 | |
| 53 | // Complex64s constructs a field that carries a slice of complex numbers. |
| 54 | func Complex64s(key string, nums []complex64) Field { |
| 55 | return Array(key, complex64s(nums)) |
| 56 | } |
| 57 | |
| 58 | // Durations constructs a field that carries a slice of time.Durations. |
| 59 | func Durations(key string, ds []time.Duration) Field { |