(arr zapcore.ArrayEncoder)
| 278 | type byteStringsArray [][]byte |
| 279 | |
| 280 | func (bss byteStringsArray) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 281 | for i := range bss { |
| 282 | arr.AppendByteString(bss[i]) |
| 283 | } |
| 284 | return nil |
| 285 | } |
| 286 | |
| 287 | type complex128s []complex128 |
| 288 |
nothing calls this directly
no test coverage detected