mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 10:20:54 +01:00
Update library.md
Add documentation for table.clone
This commit is contained in:
parent
b8e025311b
commit
2335b26ffc
1 changed files with 7 additions and 0 deletions
|
@ -466,6 +466,13 @@ function table.isfrozen(t: table): boolean
|
|||
|
||||
Returns `true` iff the input table is frozen.
|
||||
|
||||
```
|
||||
function table.clone(t: table): table
|
||||
```
|
||||
|
||||
Returns a copy of the input table that has the same metatable, same keys and values, and is not frozen even if `t` was.
|
||||
The copy is shallow: implementing a deep recursive copy automatically is challenging, and often only certain keys need to be cloned recursively which can be done after the initial clone by modifying the resulting table.
|
||||
|
||||
## string library
|
||||
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue