aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/api/table.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-01-17 15:50:06 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2011-01-17 15:50:06 -0500
commitd196ce1c86c27e0b07b2ee537da07e362f44e784 (patch)
tree4b3e7cdadc82657d7d3a2aaef2b69beabfc5299c /modules/lua/api/table.luadoc
parent5b3d39a6ac36e344ae95666b6b60f3ee1d4e1057 (diff)
downloadtextadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.tar.gz
textadept-d196ce1c86c27e0b07b2ee537da07e362f44e784.zip
Added Adeptsense.
Diffstat (limited to 'modules/lua/api/table.luadoc')
-rw-r--r--modules/lua/api/table.luadoc22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/lua/api/table.luadoc b/modules/lua/api/table.luadoc
deleted file mode 100644
index 81f5a369..00000000
--- a/modules/lua/api/table.luadoc
+++ /dev/null
@@ -1,22 +0,0 @@
---- Returns concatenated table elements i to j separated by sep.
-function concat(table [, sep [, i [, j]]])
----
--- Executes f(index,value) over all elements of table, returns first non-nil of
--- f.
-function foreach(table, f)
----
--- Executes f(index,value) in sequential order 1 to n, returns first non-nil of
--- f.
-function foreachi(table, f)
----
--- Returns size of table, or n field, or table.setn value, or 1 less first index
--- with nil value.
-function getn(table)
---- Insert value at location pos in table, default pos=n+1.
-function insert(table, [pos,] value)
---- Removes element at pos from table, default pos=n.
-function remove(table [, pos])
---- Sets size of table, n field of table if it exists.
-function setn(table, n)
---- Sorts in-place elements 1 to n, comp(v1,v2) true if v1<v2, default <.
-function sort(table [, comp])