Y
Hacker News
new
|
ask
|
show
|
jobs
by
gerds
5294 days ago
Is there an equivalent in Ruby?
1 comments
irahul
5294 days ago
Not as high level as Python's generator expressions, but you can use Ruby's fibers to implement generators.
link
rue
5294 days ago
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.
link