pop method

void pop([
  1. int count = 1
])

Pops a number of values from the stack, discarding them.

Implementation

void pop([int count = 1]) {
  lua_pop(L, count);
}