I have a method inside of a method. The interior method depends on a variable loop that is being run. Is that a bad idea?
|
|
No, Ruby doesn't have nested methods. You can do something like this:
But that is not a nested method. I repeat: Ruby does not have nested methods. What this is, is a dynamic method definition. When you run But where is
Also, it will obviously be redefined every time you run
In short: no, Ruby does not support nested methods. Note also that in Ruby, method bodies cannot be closures, only block bodies can. This pretty much eliminates the major use case for nested methods, since even if Ruby supported nested methods, you couldn't use the outer method's variables in the nested method. |
|||||||||||
|
|
No, no, Ruby does have nested methods. Check this:
|
||||
|
