| 610 | } |
| 611 | |
| 612 | type containsOperator struct { |
| 613 | equal Predicate |
| 614 | contains bool |
| 615 | } |
| 616 | |
| 617 | func (op *containsOperator) next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) { |
| 618 | if op.equal(item.V) { |
nothing calls this directly
no outgoing calls
no test coverage detected