From 7eed972c2798d3e10c795b8c4cf277fad7eb37e6 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 14:32:06 -0800 Subject: [PATCH] Add table.unpack comment --- docs/syntax-structure-matching.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 789c3bc..de47e99 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -183,6 +183,12 @@ For unpacking arrays, this proposal suggests: { [1] = foo, [2] = bar } ``` +Or alternatively, using `table.unpack`: + +```Lua +foo, bar = table.unpack(data) +``` + For disambiguity with other languages, we would still not allow: ```Lua