| 61 | } |
| 62 | |
| 63 | type averageFloat32Operator struct { |
| 64 | sum float32 |
| 65 | count float32 |
| 66 | } |
| 67 | |
| 68 | func (op *averageFloat32Operator) next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) { |
| 69 | switch v := item.V.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected