๐Table
These are all of the functions revolving tables that Wave supports.
Get Raw Metatable
<table> getrawmetatable(<table> a1) Returns the
__metatableofa1.
Is Read Only
<bool> isreadonly(<table> a1) Returns if
a1is read-only.
Is Writable
<bool> iswritable(<table tbl>)Checks if
tblis writable, i.e., if its fields can be modified.
Alternative:
iswriteable
Make Read Only
<void> makereadonly(<table tbl>)Makes
tblread-only, preventing modifications to its fields.
Alternative:
make_readonly
Make Writable
Makes
tblwritable, allowing its fields to be modified.
Alternative:
make_writable,make_writeable,makewriteable
Set Raw Metatable
Sets the
__metatableofa1toa2.
Set Read Only
Sets the read-only value of
a1toa2.
Last updated