diff options
author | Kim Alvefur <zash@zash.se> | 2022-06-15 15:40:03 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-06-15 15:40:03 +0200 |
commit | a9c96e12c2b2cbe40604571e2d81027fa4139aa6 (patch) | |
tree | 6643058ad61865aa0223eaaf0354d8c9c8a560cf /teal-src/util | |
parent | dfa35e5217b21c8ea8e10a1128c50d07e67c056b (diff) | |
download | prosody-a9c96e12c2b2cbe40604571e2d81027fa4139aa6.tar.gz prosody-a9c96e12c2b2cbe40604571e2d81027fa4139aa6.zip |
util.table: Add move() to Teal interface description file
Diffstat (limited to 'teal-src/util')
-rw-r--r-- | teal-src/util/table.d.tl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/teal-src/util/table.d.tl b/teal-src/util/table.d.tl index 0ff5ed95..67e5d0f0 100644 --- a/teal-src/util/table.d.tl +++ b/teal-src/util/table.d.tl @@ -1,6 +1,7 @@ local record lib create : function (narr:integer, nrec:integer):table pack : function (...:any):{any} + move : function (table, integer, integer, integer, table) : table end return lib |