PushValue pushes a copy of the element at index onto the stack. http://www.lua.org/manual/5.2/manual.html#lua_pushvalue
(index int)
| 1425 | // |
| 1426 | // http://www.lua.org/manual/5.2/manual.html#lua_pushvalue |
| 1427 | func (l *State) PushValue(index int) { l.apiPush(l.indexToValue(index)) } |
| 1428 | |
| 1429 | // PushNil pushes a nil value onto the stack. |
| 1430 | // |