(predicate, context)
| 447 | }, |
| 448 | |
| 449 | skipWhile(predicate, context) { |
| 450 | return reify(this, skipWhileFactory(this, predicate, context, true)); |
| 451 | }, |
| 452 | |
| 453 | skipUntil(predicate, context) { |
| 454 | return this.skipWhile(not(predicate), context); |
nothing calls this directly
no test coverage detected