I seem to recall Lua has something similar to Ruby's method_missing. Or am I remembering incorrectly? Thanks in advance

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

The __index and __newindex of a table's metatable can be used to the same effect as Ruby's method_missing.

link|improve this answer
Yes, upon more vigilant googling I found this URL lua.org/pil/13.4.1.html from the Lua manual which states: "when we access an absent field in a table .... such access triggers the interpreter to look for an __index metamethod" – George Jempty Oct 11 '11 at 20:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.