| 278 | } |
| 279 | |
| 280 | type averageInt32Operator struct { |
| 281 | sum int32 |
| 282 | count int32 |
| 283 | } |
| 284 | |
| 285 | func (op *averageInt32Operator) next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) { |
| 286 | switch v := item.V.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected