Skip to content

Instantly share code, notes, and snippets.

@appsol
Created May 25, 2014 10:42
Show Gist options
  • Save appsol/76dfdefbaef0091e6fe8 to your computer and use it in GitHub Desktop.
Save appsol/76dfdefbaef0091e6fe8 to your computer and use it in GitHub Desktop.
Saasbook Project 3.9
#!/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