Skip to content

Instantly share code, notes, and snippets.

@vinniefalco
Created August 28, 2020 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinniefalco/cf95e017c428e02e969e186f3248b9c3 to your computer and use it in GitHub Desktop.
Save vinniefalco/cf95e017c428e02e969e186f3248b9c3 to your computer and use it in GitHub Desktop.
/** Push an array formed by popping `n` values from the stack.
This function pushes an @ref array value
onto the stack. The array is formed by first
popping the top `n` values from the stack.
If the stack contains fewer than `n` values,
or if any of the top `n` values on the stack
is a key, the behavior is undefined.
@param n The number of values to pop from the
top of the stack to form the array.
*/
void
push_array(std::size_t n);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment