Skip to content

Instantly share code, notes, and snippets.

@murajun1978
Last active August 29, 2015 14:01
Show Gist options
  • Save murajun1978/e88c49d2d5be915ca342 to your computer and use it in GitHub Desktop.
Save murajun1978/e88c49d2d5be915ca342 to your computer and use it in GitHub Desktop.
[1, 2, 3].select {|n| n == 2} # => [2]
[1, 2, 3].select &2.method(:==) # => [2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment