(arr zapcore.ArrayEncoder)
| 323 | type float32s []float32 |
| 324 | |
| 325 | func (nums float32s) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 326 | for i := range nums { |
| 327 | arr.AppendFloat32(nums[i]) |
| 328 | } |
| 329 | return nil |
| 330 | } |
| 331 | |
| 332 | type ints []int |
| 333 |
nothing calls this directly
no test coverage detected