| 23 | } |
| 24 | |
| 25 | type allOperator struct { |
| 26 | predicate Predicate |
| 27 | all bool |
| 28 | } |
| 29 | |
| 30 | func (op *allOperator) next(ctx context.Context, item Item, dst chan<- Item, operatorOptions operatorOptions) { |
| 31 | if !op.predicate(item.V) { |
nothing calls this directly
no outgoing calls
no test coverage detected