Hacker News new | ask | show | jobs
by saagarjha 2570 days ago
Does JavaScript have adapters to covert lists into generators or lazy iterators?
1 comments

Unfortunately not in a way that can optimize these methods. This is one reason the Java Streams API, which has a similar purpose (e.g. map, filter, flatMap, reduce, etc.), is a better design IMO because you can chain together method calls without creating (and iterating) the full array at each step.