Complex128s constructs a field that carries a slice of complex numbers.
(key string, nums []complex128)
| 47 | |
| 48 | // Complex128s constructs a field that carries a slice of complex numbers. |
| 49 | func Complex128s(key string, nums []complex128) Field { |
| 50 | return Array(key, complex128s(nums)) |
| 51 | } |
| 52 | |
| 53 | // Complex64s constructs a field that carries a slice of complex numbers. |
| 54 | func Complex64s(key string, nums []complex64) Field { |