lua_topointer method

Pointer<Void> lua_topointer(
  1. Pointer<lua_State> L,
  2. int idx
)

Implementation

ffi.Pointer<ffi.Void> lua_topointer(
  ffi.Pointer<lua_State> L,
  int idx,
) {
  return _lua_topointer(
    L,
    idx,
  );
}