lua_compare method

int lua_compare(
  1. Pointer<lua_State> L,
  2. int idx1,
  3. int idx2,
  4. int op,
)

Implementation

int lua_compare(ffi.Pointer<lua_State> L, int idx1, int idx2, int op) {
  return _lua_compare(L, idx1, idx2, op);
}