| 648 | } |
| 649 | |
| 650 | type countOperator struct { |
| 651 | count int64 |
| 652 | } |
| 653 | |
| 654 | func (op *countOperator) next(_ context.Context, _ Item, _ chan<- Item, _ operatorOptions) { |
| 655 | op.count++ |
nothing calls this directly
no outgoing calls
no test coverage detected