Skip to content

Instantly share code, notes, and snippets.

@bansalakhil
Created July 26, 2012 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bansalakhil/3181222 to your computer and use it in GitHub Desktop.
Save bansalakhil/3181222 to your computer and use it in GitHub Desktop.
Calculating Sum
# I have seen people writing something like:
users.collect{|u| u.tasks.size}.sum
# This can also be written as
users.sum{|u| u.tasks.size}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment