ladybird/Userland/Libraries/LibJS/Tests/builtins/Iterator
Timothy Flynn ad42b4ea67 LibJS: Implement Iterator.prototype.flatMap
This prototype is a bit tricky in that we need to maintain the iteration
state of the mapped iterator's inner iterator as we return values to the
caller. To do this, we create a FlatMapIterator helper to perform the
steps that apply to the current iteration state.
2023-06-26 10:39:07 +02:00
..
Iterator.from.js
Iterator.js
Iterator.prototype.@@toStringTag.js LibJS: Implement Iterator.prototype [ @@toStringTag ] 2023-06-26 10:39:07 +02:00
Iterator.prototype.drop.js LibJS: Implement Iterator.prototype.drop 2023-06-26 10:39:07 +02:00
Iterator.prototype.filter.js LibJS: Implement Iterator.prototype.filter 2023-06-26 10:39:07 +02:00
Iterator.prototype.flatMap.js LibJS: Implement Iterator.prototype.flatMap 2023-06-26 10:39:07 +02:00
Iterator.prototype.map.js LibJS: Implement Iterator.prototype.map 2023-06-26 10:39:07 +02:00
Iterator.prototype.take.js LibJS: Implement Iterator.prototype.take 2023-06-26 10:39:07 +02:00