When should a lambda or proc be used? I have seen them described as anonymous functions, but I am struggling to understand this concept. I would appreciate any links to or examples of when you might use one in Ruby, but especially in Ruby on Rails.
|
http://augustl.com/blog/2008/procs_blocks_and_anonymous_functions/ has a run-down of what blocks/procs/lambdas are, how you can use them, and how they compare to functions in other languages. It definitely answers your question. Do be aware that the last section 'A note on lambdas' mentions a point that is only true in Ruby 1.8 and changed in 1.9 - Ruby: Proc.new { 'waffles' } vs. proc { 'waffles' } |
|||||||||||
|
|
I don't see where you make the distinction between Ruby on Rails and Ruby. If you're writing a Ruby on Rails application, you're writing Ruby code, so if it's useful in Ruby, it should be useful in Ruby on Rails. Anyway, this article, Some Useful Closures in Ruby, should be helpful, as well as this: http://www.robertsosinski.com/2008/12/21/understanding-ruby-blocks-procs-and-lambdas/ |
||||
|
|
Where I've seen Lambda used is in testing...
Lambda allows you to have that test at the end to make sure that the code executed in the lambda block doesn't change change the User count. |
|||
|
|
|
It is a piece of code that allows you to pass around. It is especially useful in named_scope, it allows to you do something like this:
Say you have a Project model and you want to get all the projects for one particular user, you can do something like this:
|
|||
|
|
|
lambda is exceptionally useful in |
||||
|
|