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.
 
 
 
 
 
 

18 lines
363 B

=proto
int duk_require_boolean(duk_context *ctx, int index);
=stack
[ ... val! ... ]
=summary
<p>Like <code><a href="#duk_get_boolean">duk_get_boolean()</a></code>,
but throws an error if the value at <code>index</code> is not a boolean
or if the index is invalid.</p>
=example
if (duk_require_boolean(ctx, -3)) {
printf("value is true\n");
}
=tags
stack