| 108 | } |
| 109 | |
| 110 | type averageFloat64Operator struct { |
| 111 | sum float64 |
| 112 | count float64 |
| 113 | } |
| 114 | |
| 115 | func (op *averageFloat64Operator) next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) { |
| 116 | switch v := item.V.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected