|
I like to clarify what i mean was overhead using
variables & functions using metatable __index OOP method.
something like
acc = Account:new()
-- how much performance overhead i get with
something like this
acc.Balance = 100
acc.Withdraw(10)
Also like to know if using LuaJIT overhead between
these two methods lowers? Because like to use best possible method performance
wise in my whole code because i'll be using objects alot.
|