Returns the real value associated with a key in a table without invoking any metamethods


See also Lua library functions.

Signature:

value = rawget(t, key)

Arguments:

  • t - A table (table)
  • key - A key in the table (value)

Returns:

  • value - Value of t[key] (value)
This function is defined in the Lua standard libraries