Doesn't Lua have something comparable to Ruby's method_missing?

379 Views Asked by At

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

1

There are 1 best solutions below

1
On BEST ANSWER

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