Software /
code /
prosody
Comparison
teal-src/util/table.d.tl @ 12618:17cc122cc2e8
util.table: Add move() to Teal interface description file
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 15 Jun 2022 15:40:03 +0200 |
parent | 11459:86904555bffc |
comparison
equal
deleted
inserted
replaced
12617:36d77cc56ecb | 12618:17cc122cc2e8 |
---|---|
1 local record lib | 1 local record lib |
2 create : function (narr:integer, nrec:integer):table | 2 create : function (narr:integer, nrec:integer):table |
3 pack : function (...:any):{any} | 3 pack : function (...:any):{any} |
4 move : function (table, integer, integer, integer, table) : table | |
4 end | 5 end |
5 return lib | 6 return lib |
6 | 7 |