Lambda
Published Jul 30, 2021Updated Sep 9, 2021
Contribute to Docs
In Ruby, lambdas are anonymous function code blocks that can take zero or more arguments. They can then be stored or passed in other values and called primarily with the #call
method.
Syntax
If zero arguments are used, use either ->
or lambda
:
myLambda = lambda { puts "Hello, World!" }puts myLambda.call # Output: Hello, World!
If 1 or more arguments are used, use ->
:
myLambda = -> (v) { v * 2 }puts myLambda.call(2) # Output: 4
Looking to contribute?
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.