Type Function Library (globals) Return value (varies) Revision Current Public Release (2018.3326) Keywords rawget, rawset, tables See also rawset()
Gets the real value of table[index]
, without invoking any metamethod. table
must be a Table; index
may be any Number or String.
local t = { sample = "example value" , another = 12345 } print ( rawget ( t, "sample" ) ) -- OUTPUT: "example value" |