(arr zapcore.ArrayEncoder)
| 350 | type int32s []int32 |
| 351 | |
| 352 | func (nums int32s) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 353 | for i := range nums { |
| 354 | arr.AppendInt32(nums[i]) |
| 355 | } |
| 356 | return nil |
| 357 | } |
| 358 | |
| 359 | type int16s []int16 |
| 360 |
nothing calls this directly
no test coverage detected