Lua Memo

Lua のテーブルを操作する

  • table…Lua のテーブルを操作する
    • concat…* テーブルを区切り文字で結合して文字列として返す |table.concat (table [, sep [..
    • insert…* テーブルに値を挿入する |table.insert (table, [pos,] value)| table の位置 pos..
    • maxn…* インデックスの最大値を返す |table.maxn (table)| 指定したテーブルの最大のイン..
    • remove…* テーブルから値を取り除く |table.remove (table [, pos])| table から位置 pos ..
    • sort…* テーブルを並び替える |table.sort (table [, comp])| table[1] から table[n] ま..