(arr zapcore.ArrayEncoder)
| 296 | type complex64s []complex64 |
| 297 | |
| 298 | func (nums complex64s) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 299 | for i := range nums { |
| 300 | arr.AppendComplex64(nums[i]) |
| 301 | } |
| 302 | return nil |
| 303 | } |
| 304 | |
| 305 | type durations []time.Duration |
| 306 |
nothing calls this directly
no test coverage detected