Skip to content

Instantly share code, notes, and snippets.

@Masa331
Last active August 29, 2015 14:25
Show Gist options
  • Save Masa331/73e58c3aabc14e235883 to your computer and use it in GitHub Desktop.
Save Masa331/73e58c3aabc14e235883 to your computer and use it in GitHub Desktop.
collection = [1, 2, 3]
collection.each # or other Enumerable method without block
# => #<Enumerator: ...>
collection.to_enum # or collection.enum_for which is alias
# => #<Enumerator: ...>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment