remove method
Removes a value in the stack at a specific index, shifting values above it down to fill the gap.
Implementation
void remove(int index) => lua_remove(L, index);
Removes a value in the stack at a specific index, shifting values above it down to fill the gap.
void remove(int index) => lua_remove(L, index);