diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-03-31 13:14:49 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-03-31 13:14:49 +0800 |
commit | 128584e0d91098f8a0d3c6bc48dc529e59d5d1e4 (patch) | |
tree | 99b7d329a33167e3b92605c2fdfd9072dee89a01 /server/locale/zh-CN/libs/lua/table.lni | |
parent | f8516effb5ca8e151f4c4eb45f8d97b273c9d922 (diff) | |
download | lua-language-server-128584e0d91098f8a0d3c6bc48dc529e59d5d1e4.zip |
修改目录名
Diffstat (limited to 'server/locale/zh-CN/libs/lua/table.lni')
-rw-r--r-- | server/locale/zh-CN/libs/lua/table.lni | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/server/locale/zh-CN/libs/lua/table.lni b/server/locale/zh-CN/libs/lua/table.lni new file mode 100644 index 00000000..57b6588b --- /dev/null +++ b/server/locale/zh-CN/libs/lua/table.lni @@ -0,0 +1,36 @@ +[concat] +description = [[ +-------- +```lua +return list[i]..sep..list[i+1] ··· sep..list[j] +``` +]] + +[insert] +description = '在 `list` 的位置 `pos` 处插入元素 `value`。' + +[move] +description = [[ +将元素从表 `a1` 移到表 `a2`。 +```lua +a2[t],··· = a1[f],···,a1[e] +return a2 +``` +]] + +[pack] +description = '返回用所有参数以键 `1`,`2`, 等填充的新表, 并将 `"n"` 这个域设为参数的总数。' + +[remove] +description = '移除 `list` 中 `pos` 位置上的元素,并返回这个被移除的值。' + +[sort] +description = '在表内从 `list[1]` 到 `list[#list]` *原地* 对其间元素按指定次序排序。' + +[unpack] +description = [[ +------- +```lua +return list[i], list[i+1], ···, list[j] +``` +]] |