Type Function Library (globals) Return value (varies) Revision Release 2024.3703 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"