(arr zapcore.ArrayEncoder)
| 269 | type bools []bool |
| 270 | |
| 271 | func (bs bools) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 272 | for i := range bs { |
| 273 | arr.AppendBool(bs[i]) |
| 274 | } |
| 275 | return nil |
| 276 | } |
| 277 | |
| 278 | type byteStringsArray [][]byte |
| 279 |
nothing calls this directly
no test coverage detected