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