Copy moves the element at the index from into the valid index to without shifting any element (therefore replacing the value at that position). http://www.lua.org/manual/5.2/manual.html#lua_copy
(from, to int)
| 1372 | // |
| 1373 | // http://www.lua.org/manual/5.2/manual.html#lua_copy |
| 1374 | func (l *State) Copy(from, to int) { l.move(to, l.indexToValue(from)) } |
| 1375 | |
| 1376 | // Version returns the address of the version number stored in the Lua core. |
| 1377 | // |
no test coverage detected