ByteStrings constructs a field that carries a slice of []byte, each of which must be UTF-8 encoded text.
(key string, bss [][]byte)
| 42 | // ByteStrings constructs a field that carries a slice of []byte, each of which |
| 43 | // must be UTF-8 encoded text. |
| 44 | func ByteStrings(key string, bss [][]byte) Field { |
| 45 | return Array(key, byteStringsArray(bss)) |
| 46 | } |
| 47 | |
| 48 | // Complex128s constructs a field that carries a slice of complex numbers. |
| 49 | func Complex128s(key string, nums []complex128) Field { |