mirror of https://github.com/svaarala/duktape.git
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.
19 lines
332 B
19 lines
332 B
name: duk_push_false
|
|
|
|
proto: |
|
|
void duk_push_false(duk_context *ctx);
|
|
|
|
stack: |
|
|
[ ... ] -> [ ... false! ]
|
|
|
|
summary: |
|
|
<p>Push <code>false</code> to stack. Equivalent to calling
|
|
<code><a href="#duk_push_boolean">duk_push_boolean(ctx, 0)</a></code>.</p>
|
|
|
|
example: |
|
|
duk_push_false(ctx);
|
|
|
|
tags:
|
|
- stack
|
|
|
|
introduced: 1.0.0
|
|
|