| Line 22: |
Line 22: |
| | | | |
| | 4 | | 4 |
| | + | |
| | + | ==Related== |
| | + | |
| | + | Array.collectwhile=Array.filteroncondition with SomeTakeDropOrAllFlag (0); |
| | + | |
| | + | Array.suchthat=Array.filteroncondition with SomeTakeDropOrAllFlag (0); |
| | + | |
| | + | Array.collect=Array.suchthat as previous; |
| | + | |
| | + | Array.takewhile=Array.filteroncondition with SomeTakeDropOrAllFlag(1); |
| | + | |
| | + | Array.dropwhile=Array.filteroncondition with SomeTakeDropOrAllFlag(2); |
| | + | |
| | + | |
| | + | |
| | + | Array.collectwhileasvector=Array.filteroncondition with SomeTakeDropOrAllFlag(10); |
| | + | |
| | + | Array.suchthatasvector=Array.filteroncondition with SomeTakeDropOrAllFlag(10); |
| | + | |
| | + | Array.collectasvector=Array.suchthatasvector; as previous |
| | + | |
| | + | Array.takewhileasvector=Array.filteroncondition with SomeTakeDropOrAllFlag(11); |
| | + | |
| | + | Array.dropwhileasvector=Array.filteroncondition with SomeTakeDropOrAllFlag(12); |
| | + | |
| | + | |
| | + | |
| | + | Array.prototype.splitwhile=Array.prototype.partitiononcondition with SomeTakeDropOrAllFlag(0); |
| | + | Array.prototype.splitwhileasvector=Array.prototype.partitiononcondition with SomeTakeDropOrAllFlag(10); |