lua_pushthread method

int lua_pushthread(
  1. Pointer<lua_State> L
)

Implementation

int lua_pushthread(
  ffi.Pointer<lua_State> L,
) {
  return _lua_pushthread(
    L,
  );
}