Skip to content

Instantly share code, notes, and snippets.

@MrJaba
Created August 25, 2010 13:20
Show Gist options
  • Save MrJaba/549487 to your computer and use it in GitHub Desktop.
Save MrJaba/549487 to your computer and use it in GitHub Desktop.
a = [1,2,3, "Cheddar", {:cheese => "awesome"}]
a.grep(String)
#=> ["Cheddar"]
a.grep(Hash)
#=> [{:cheese=>"awesome"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment