Skip to content

Instantly share code, notes, and snippets.

@manuelmeurer
Created September 14, 2012 17:51
Show Gist options
  • Save manuelmeurer/3723502 to your computer and use it in GitHub Desktop.
Save manuelmeurer/3723502 to your computer and use it in GitHub Desktop.
Completely flatten a hash
# 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