Pop pops n elements from the stack. http://www.lua.org/manual/5.2/manual.html#lua_pop
(n int)
| 1472 | // |
| 1473 | // http://www.lua.org/manual/5.2/manual.html#lua_pop |
| 1474 | func (l *State) Pop(n int) { l.SetTop(-n - 1) } |
| 1475 | |
| 1476 | // NewTable creates a new empty table and pushes it onto the stack. It is |
| 1477 | // equivalent to l.CreateTable(0, 0). |