Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Sets whether a table is readonly and returns no values.
setreadonly(target: table, readonly: boolean)
target
table
readonly
boolean
local target = {} setreadonly(target, true) print(isreadonly(target)) setreadonly(target, false) print(isreadonly(target))