Skip to content

Instantly share code, notes, and snippets.

@alindeman
Last active December 18, 2015 06:09
Show Gist options
  • Save alindeman/5737727 to your computer and use it in GitHub Desktop.
Save alindeman/5737727 to your computer and use it in GitHub Desktop.
class Iterator < Enumerator
def initialize(object, &iterate)
super() do |y|
y << object
loop { y << object = iterate[object] }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment