NewTable creates a new empty table and pushes it onto the stack. It is equivalent to l.CreateTable(0, 0). http://www.lua.org/manual/5.2/manual.html#lua_newtable
()
| 1478 | // |
| 1479 | // http://www.lua.org/manual/5.2/manual.html#lua_newtable |
| 1480 | func (l *State) NewTable() { l.CreateTable(0, 0) } |
| 1481 | |
| 1482 | // PushGoFunction pushes a Function implemented in Go onto the stack. |
| 1483 | // |
no test coverage detected