(arr zapcore.ArrayEncoder)
| 314 | type float64s []float64 |
| 315 | |
| 316 | func (nums float64s) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 317 | for i := range nums { |
| 318 | arr.AppendFloat64(nums[i]) |
| 319 | } |
| 320 | return nil |
| 321 | } |
| 322 | |
| 323 | type float32s []float32 |
| 324 |
nothing calls this directly
no test coverage detected