Skip to content

Instantly share code, notes, and snippets.

Created December 30, 2012 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4410424 to your computer and use it in GitHub Desktop.
Save anonymous/4410424 to your computer and use it in GitHub Desktop.
How enumerable classes work in Ruby
class CustomEnumerable
include Enumerable
def initialize(items)
@items = items
end
def each(&block)
puts __callee__
@items.each {|item| yield item }
end
end
enum = CustomEnumerable.new([1, 2, 3, 4, 5, 6, 7, 8])
enum.map {|e| e }
enum.to_a
enum.take(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment