(arr zapcore.ArrayEncoder)
| 341 | type int64s []int64 |
| 342 | |
| 343 | func (nums int64s) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 344 | for i := range nums { |
| 345 | arr.AppendInt64(nums[i]) |
| 346 | } |
| 347 | return nil |
| 348 | } |
| 349 | |
| 350 | type int32s []int32 |
| 351 |
nothing calls this directly
no test coverage detected