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.
16 lines
364 B
16 lines
364 B
=proto
|
|
duk_double_t duk_get_number(duk_context *ctx, duk_idx_t index);
|
|
|
|
=stack
|
|
[ ... val! ... ]
|
|
|
|
=summary
|
|
<p>Get the number value at <code>index</code> without modifying or coercing
|
|
the value. Returns <code>NaN</code> if the value is not a number or the
|
|
index is invalid.</p>
|
|
|
|
=example
|
|
printf("value: %lf\n", (double) duk_get_number(ctx, -3));
|
|
|
|
=introduced
|
|
1.0.0
|
|
|