lua_concat method

void lua_concat(
  1. Pointer<lua_State> L,
  2. int n
)

Implementation

void lua_concat(
  ffi.Pointer<lua_State> L,
  int n,
) {
  return _lua_concat(
    L,
    n,
  );
}