I don't know any Ruby and am reading some documentationon it now. A doubt I have just after reading about using code blocks and the "yield" keyword is whether it is possible to pass more than one code block to a function, and use both at will from within the called function.
|
You can pass only one block at once but blocks are actually
However, it rarely makes sense. |
|||||||||
|
|
Syntactically, using the Of course, you can pass a function multiple other functions or "code block objects" ( |
|||
|
|
|
You can create I recommend reading this page to understand the subtleties of all different block- and closure-like constructs Ruby has. |
||||
|
|
|
You can use the Here's how:
You can pass args with for example:
arguments work just like you'd expect in blocks:
|
|||
|
|