Table Functions
<table> getrawmetatable(<table> obj)
Returns all the metatables of obj. Returns nil if it does not exist.
<bool> setrawmetatable(<table> obj, <table> mt)
Sets obj metatable to mt.
<void> setreadonly(<table> obj, <bool> val)
Will set obj readonly status to val.
<void> make_readonly(<table> obj)
Will set obj readonly status to true.
<void> make_writeable(<table> obj)
Will set obj readonly status to false.
<bool> isreadonly(<table> obj)
Returns obj readonly status.
Last updated
Was this helpful?