From 2335b26ffc09fda428bc80f126e2f884815f7514 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 24 Mar 2022 09:31:18 -0700 Subject: [PATCH] Update library.md Add documentation for table.clone --- docs/_pages/library.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/_pages/library.md b/docs/_pages/library.md index 28e7035a..eeada336 100644 --- a/docs/_pages/library.md +++ b/docs/_pages/library.md @@ -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 ```