aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ltablib.c9
-rw-r--r--manual/manual.of17
-rw-r--r--testes/sort.lua21
3 files changed, 45 insertions, 2 deletions
diff --git a/ltablib.c b/ltablib.c
index 44d55ef5..c8838963 100644
--- a/ltablib.c
+++ b/ltablib.c
@@ -58,6 +58,14 @@ static void checktab (lua_State *L, int arg, int what) {
58} 58}
59 59
60 60
61static int tcreate (lua_State *L) {
62 int sizeseq = (int)luaL_checkinteger(L, 1);
63 int sizerest = (int)luaL_optinteger(L, 2, 0);
64 lua_createtable(L, sizeseq, sizerest);
65 return 1;
66}
67
68
61static int tinsert (lua_State *L) { 69static int tinsert (lua_State *L) {
62 lua_Integer pos; /* where to insert new element */ 70 lua_Integer pos; /* where to insert new element */
63 lua_Integer e = aux_getn(L, 1, TAB_RW); 71 lua_Integer e = aux_getn(L, 1, TAB_RW);
@@ -390,6 +398,7 @@ static int sort (lua_State *L) {
390 398
391static const luaL_Reg tab_funcs[] = { 399static const luaL_Reg tab_funcs[] = {
392 {"concat", tconcat}, 400 {"concat", tconcat},
401 {"create", tcreate},
393 {"insert", tinsert}, 402 {"insert", tinsert},
394 {"pack", tpack}, 403 {"pack", tpack},
395 {"unpack", tunpack}, 404 {"unpack", tunpack},
diff --git a/manual/manual.of b/manual/manual.of
index 48f396d9..42269ff4 100644
--- a/manual/manual.of
+++ b/manual/manual.of
@@ -3234,11 +3234,11 @@ Values at other positions are not affected.
3234 3234
3235} 3235}
3236 3236
3237@APIEntry{void lua_createtable (lua_State *L, int narr, int nrec);| 3237@APIEntry{void lua_createtable (lua_State *L, int nseq, int nrec);|
3238@apii{0,1,m} 3238@apii{0,1,m}
3239 3239
3240Creates a new empty table and pushes it onto the stack. 3240Creates a new empty table and pushes it onto the stack.
3241Parameter @id{narr} is a hint for how many elements the table 3241Parameter @id{nseq} is a hint for how many elements the table
3242will have as a sequence; 3242will have as a sequence;
3243parameter @id{nrec} is a hint for how many other elements 3243parameter @id{nrec} is a hint for how many other elements
3244the table will have. 3244the table will have.
@@ -7969,6 +7969,19 @@ If @id{i} is greater than @id{j}, returns the empty string.
7969 7969
7970} 7970}
7971 7971
7972@LibEntry{table.create (nseq [, nrec])|
7973
7974Creates a new empty table, preallocating memory.
7975This preallocation may help performance and save memory
7976when you know in advance how many elements the table will have.
7977
7978Parameter @id{nseq} is a hint for how many elements the table
7979will have as a sequence.
7980Optional parameter @id{nrec} is a hint for how many other elements
7981the table will have; its default is zero.
7982
7983}
7984
7972@LibEntry{table.insert (list, [pos,] value)| 7985@LibEntry{table.insert (list, [pos,] value)|
7973 7986
7974Inserts element @id{value} at position @id{pos} in @id{list}, 7987Inserts element @id{value} at position @id{pos} in @id{list},
diff --git a/testes/sort.lua b/testes/sort.lua
index 40bb2d8a..45014652 100644
--- a/testes/sort.lua
+++ b/testes/sort.lua
@@ -3,6 +3,27 @@
3 3
4print "testing (parts of) table library" 4print "testing (parts of) table library"
5 5
6do print "testing 'table.create'"
7 collectgarbage()
8 local m = collectgarbage("count") * 1024
9 local t = table.create(10000)
10 local memdiff = collectgarbage("count") * 1024 - m
11 assert(memdiff > 10000 * 4)
12 for i = 1, 20 do
13 assert(#t == i - 1)
14 t[i] = 0
15 end
16 assert(not T or T.querytab(t) == 10000)
17 t = nil
18 collectgarbage()
19 m = collectgarbage("count") * 1024
20 t = table.create(0, 1024)
21 memdiff = collectgarbage("count") * 1024 - m
22 assert(memdiff > 1024 * 12)
23 assert(not T or select(2, T.querytab(t)) == 1024)
24end
25
26
6print "testing unpack" 27print "testing unpack"
7 28
8local unpack = table.unpack 29local unpack = table.unpack