Created
June 15, 2011 23:11
-
-
Save Amokrane/1028353 to your computer and use it in GitHub Desktop.
Symbol to proc are bad for performance (by @tenderlove)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@list.map(&:to_i) | |
# vs | |
@list.map { |x| x.to_i } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment