| 319 | } |
| 320 | |
| 321 | type averageInt64Operator struct { |
| 322 | sum int64 |
| 323 | count int64 |
| 324 | } |
| 325 | |
| 326 | func (op *averageInt64Operator) next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) { |
| 327 | switch v := item.V.(type) { |
nothing calls this directly
no outgoing calls
no test coverage detected