Skip to content

Instantly share code, notes, and snippets.

@Masa331
Created July 25, 2015 10:36
Show Gist options
  • Save Masa331/77bda2d4e2234a8c5c4f to your computer and use it in GitHub Desktop.
Save Masa331/77bda2d4e2234a8c5c4f to your computer and use it in GitHub Desktop.
Simple external iterator
class UnderFiveIterator
def initialize(collection)
@collection = collection
end
def each_under_five
@collection.each do |item|
if item < 5
yield item
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment