rawset
型:function
code:Lua
rawset (table, index, value)
table:
変数 型 説明
table table 対象のテーブル
index nil以外 キー
value 全て 代入する値
概要
__newindex
を呼ぶことなく
table[index]=value
を実行する
関連項目
rawget
― こっちは読み出し
rawequal
#Lua