Created
May 25, 2014 10:42
-
-
Save appsol/76dfdefbaef0091e6fe8 to your computer and use it in GitHub Desktop.
Saasbook Project 3.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Project 3.9 | |
module Enumerable | |
def each_with_flattening | |
flattened = self.flatten | |
flattened.each do |x| | |
yield x | |
end | |
end | |
end | |
[1, [2, 3], 4, [[5, 6], 7]].each_with_flattening { |s| print "#{s}," } | |
# >> 1, 2, 3, 4, 5, 6, 7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment