Table Functions
Get Raw Metatable:
<table> getrawmetatable(<table> a1)
- Returns the
__metatable
ofa1
.
Set Raw Metatable:
<bool> setrawmetatable(<table> a1, <table> a2)
- Sets the
__metatable
ofa1
toa2
.
Set Read Only:
<void> setreadonly(<table> a1, <bool> a2)
- Sets the read-only value of
a1
toa2
.
Is Read Only:
<bool> isreadonly(<table> a1)
- Returns if
a1
is read-only.