remove method

void remove(
  1. int index
)

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);