(arr zapcore.ArrayEncoder)
| 305 | type durations []time.Duration |
| 306 | |
| 307 | func (ds durations) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 308 | for i := range ds { |
| 309 | arr.AppendDuration(ds[i]) |
| 310 | } |
| 311 | return nil |
| 312 | } |
| 313 | |
| 314 | type float64s []float64 |
| 315 |
nothing calls this directly
no test coverage detected