You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
228 B

12 years ago
=proto
void duk_pop_2(duk_context *ctx);
=stack
[ ... val1! val2! ] -> [ ... ]
=summary
<p>Pop two elements off the stack. If the stack has fewer than two elements,
throws an error.</p>
=example
duk_pop_2(ctx);
=tags
stack