lua_xmove method

void lua_xmove(
  1. Pointer<lua_State> from,
  2. Pointer<lua_State> to,
  3. int n
)

Implementation

void lua_xmove(
  ffi.Pointer<lua_State> from,
  ffi.Pointer<lua_State> to,
  int n,
) {
  return _lua_xmove(
    from,
    to,
    n,
  );
}