Created
September 14, 2012 17:51
-
-
Save manuelmeurer/3723502 to your computer and use it in GitHub Desktop.
Completely flatten a hash
This file contains 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
# From: http://www.samlown.com/en/recursive_lambdas_and_how_to_completely_flatten_a_hash_in_ruby | |
flatten = lambda do |r| | |
case r | |
when Hash | |
r.to_a.map { |v| flatten.call(v) }.flatten | |
when Array | |
r.flatten.map { |v| flatten.call(v) } | |
else | |
r | |
end | |
end | |
flatten.call(hash) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment