Update library.md

Add documentation for table.clone
This commit is contained in:
Arseny Kapoulkine 2022-03-24 09:31:18 -07:00 committed by GitHub
parent b8e025311b
commit 2335b26ffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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
```