Skip to content

Instantly share code, notes, and snippets.

@ryanlecompte
Created September 22, 2011 14:31
Show Gist options
  • Save ryanlecompte/1234916 to your computer and use it in GitHub Desktop.
Save ryanlecompte/1234916 to your computer and use it in GitHub Desktop.
Hash#select
ruby-1.9.2-head :001 > h = Hash[*1..10]
=> {1=>2, 3=>4, 5=>6, 7=>8, 9=>10}
ruby-1.9.2-head :002 > h.select {|k,v| k == 5}
=> {5=>6}
ruby-1.9.2-head :003 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment