Hacker News new | ask | show | jobs
by gerds 5294 days ago
Is there an equivalent in Ruby?
1 comments

Not as high level as Python's generator expressions, but you can use Ruby's fibers to implement generators.
Enumerator solves typical generator scenarios reasonably well, and are easy to implement for your own classes. They use Fibers internally, and include Enumerable. Enumerator supports both internal and external iteration.