(predicate, context)
| 467 | }, |
| 468 | |
| 469 | takeWhile(predicate, context) { |
| 470 | return reify(this, takeWhileFactory(this, predicate, context)); |
| 471 | }, |
| 472 | |
| 473 | takeUntil(predicate, context) { |
| 474 | return this.takeWhile(not(predicate), context); |
nothing calls this directly
no test coverage detected