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.
 
 
 
 
 
 

25 lines
685 B

=proto
int duk_is_bound_function(duk_context *ctx, int index);
=stack
[ ... val! ... ]
=summary
<p>Returns 1 if value at <tt>index</tt> is a Function object which has
been created with Ecmascript <tt>Function.prototype.bind()</tt>,
otherwise returns 0. If <tt>index</tt> is invalid, also returns 0.</p>
<p>Bound functions are an Ecmascript concept: they point to a target
function and supply a <tt>this</tt> binding and zero or more argument
bindings. See
<a href="http://www.ecma-international.org/ecma-262/5.1/#sec-15.3.4.5">Function.prototype.bind (thisArg [, arg1 [, arg2, ...]])</a>.
</p>
=example
if (duk_is_bound_function(ctx, -3)) {
/* ... */
}
=tags
stack
function