rawGeti abstract method

LuauType rawGeti(
  1. int idx,
  2. int n
)

lua_rawgeti equivalent. Pushes onto the stack the value tn, where t is the table at the given index. The access is raw, that is, it does not invoke the __index metamethod. Returns the type of the pushed value.

Implementation

LuauType rawGeti(int idx, int n);