(arr zapcore.ArrayEncoder)
| 386 | type times []time.Time |
| 387 | |
| 388 | func (ts times) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 389 | for i := range ts { |
| 390 | arr.AppendTime(ts[i]) |
| 391 | } |
| 392 | return nil |
| 393 | } |
| 394 | |
| 395 | type uints []uint |
| 396 |
nothing calls this directly
no test coverage detected