Skip to content

Instantly share code, notes, and snippets.

@simplay
Last active August 29, 2015 14:05
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 simplay/722a5158222c477c4365 to your computer and use it in GitHub Desktop.
Save simplay/722a5158222c477c4365 to your computer and use it in GitHub Desktop.
Higher order function examples.rb
# map two lists: e.g sum elementwise
[1,2,3].zip([4,5,6]).map{|a,b| a+b}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment