(arr zapcore.ArrayEncoder)
| 287 | type complex128s []complex128 |
| 288 | |
| 289 | func (nums complex128s) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 290 | for i := range nums { |
| 291 | arr.AppendComplex128(nums[i]) |
| 292 | } |
| 293 | return nil |
| 294 | } |
| 295 | |
| 296 | type complex64s []complex64 |
| 297 |
nothing calls this directly
no test coverage detected