Is there a quick way to flatten a hash into an array with the keys removed?
h={:at => [10, 20], :width => 100, :height => 200}
and result to:
[[10, 20], 100, 200]
Is there a quick way to flatten a hash into an array with the keys removed?
h={:at => [10, 20], :width => 100, :height => 200}
and result to:
[[10, 20], 100, 200]