rawget
型:function
code:Lua
rawget(table, index)
table:
変数 型 説明
table table 対象のテーブル
index nil以外 キー
概要
__index
を呼ぶことなく
table[index]
の本当の値を読み取る
関連項目
rawset
― こっちは代入
rawequal
#Lua