We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eb294c commit 1e9a162Copy full SHA for 1e9a162
docs/Runtime Environment/Table.md
@@ -32,28 +32,6 @@ t:clear()
32
print(t:size()) --> 0
33
```
34
---
35
-### `table.freeze`
36
-Freezes a table to prevent modification.
37
-#### Parameters
38
-1. The table to freeze
39
-#### Returns
40
-The input table.
41
-```pluto
42
-local t = table.freeze({...})
43
--- `table.freeze(t)` on another line will work fine too.
44
-t.key = "value" -- Fails.
45
-```
46
----
47
-### `table.isfrozen`
48
-Checks if this table is frozen.
49
50
-1. The table to check.
51
52
-local t = {}
53
-table.freeze(t)
54
-assert(table.isfrozen(t) == true)
55
56
57
### `table.contains`
58
Checks if this table contains an element.
59
#### Parameters
0 commit comments