xmove method

void xmove(
  1. LuaState to,
  2. int count
)

Pops count values from current LuaState and pushes them all onto the stack of the target LuaState.

Implementation

void xmove(LuaState to, int count) => lua_xmove(L, to.L, count);