RawGetInt pushes onto the stack the value table[key] where table is the value at index on the stack. The access is raw, as it doesn't invoke metamethods. http://www.lua.org/manual/5.2/manual.html#lua_rawgeti
(index, key int)
| 1013 | // |
| 1014 | // http://www.lua.org/manual/5.2/manual.html#lua_rawgeti |
| 1015 | func (l *State) RawGetInt(index, key int) { |
| 1016 | t := l.indexToValue(index).(*table) |
| 1017 | l.apiPush(t.atInt(key)) |
| 1018 | } |
| 1019 | |
| 1020 | // RawGetValue pushes onto the stack value table[p] where table is the |
| 1021 | // value at index on the stack, and p is a light userdata. The access is |
no test coverage detected