lua_rotate method

void lua_rotate(
  1. Pointer<lua_State> L,
  2. int idx,
  3. int n
)

Implementation

void lua_rotate(ffi.Pointer<lua_State> L, int idx, int n) {
  return _lua_rotate(L, idx, n);
}