![]()
|
|
Procs and Lambdas are similar to blocks in that they too are anonymous functions. |
|
But Blocks have Limitations |
|
|
|
Which is why we have procs and lambdas. They are proper object representations of a ruby block. |
|
Creating a Proc |
|
Here’s how you create a block that’s a proc: |
|
And here’s how you’ll call this proc that’s assigned to a variable: |
|
You can also call it in these other shorthand ways: |
|
Creating a Lambda |
|
Here’s how you create a block that’s a lambda: |
|
The words |
|
You can use the “stabby lambda” syntax |
|
Converting a Block to a Proc |
|
When a function is passed a block, and if that block needs to be passed as argument to yet another function, then you’ll have to convert the passed in block to a proc. |
|
That’s done by capturing the block in a variable
prefixed with |
|
Function |
|
Instead it just wants to pass it as an argument to
another function |
|
So it converts the block to a proc and puts it into a
variable |
|
|
|
|
|
|
|
Converting a Proc to a Block |
|
Let’s say the |
|
Then, in |
|
Procs vs Lambdas |
|
Procs and Lambdas differ in how they treat the
arguments and the keywords |
|
For the most part, you don’t have to worry about this. Just stick with lambdas if you don’t want to be caught by any surprises. |
|
You can use the |
|
Creating an Anon Function with a Symbol |
|
You can create a specific kind of anonymous function
with the |
|
Example: |
|
(Yes it’s weird that you’re creating a lambda with a
method called |
|
And the lambda created like this always takes an argument. So you can call it like this: |
|
The result of calling this lambda is the result of
calling |
|
Which means, |
|
More examples: |
|
|
|
How
|
|
In Ruby, there’s a common pattern where you iterate over an array of items, and then call a specific method on that item. |
|
Like this: |
|
|
|
This pattern is so common that Ruby provides a way to shorthand this: |
|
The way this works syntactically is, when you prefix
any Ruby thing with |
|
|
|
Useful Links |
|
|
Next topic: Regular Expressions .