luaL_unref method

void luaL_unref(
  1. Pointer<lua_State> L,
  2. int t,
  3. int ref
)

Implementation

void luaL_unref(
  ffi.Pointer<lua_State> L,
  int t,
  int ref,
) {
  return _luaL_unref(
    L,
    t,
    ref,
  );
}