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.
 
 
 
 
 
 

40 lines
960 B

name: duk_has_prop_heapptr
proto: |
duk_bool_t duk_has_prop_heapptr(duk_context *ctx, duk_idx_t obj_idx, void *ptr);
stack: |
[ ... obj! ... ] -> [ ... obj! ... ]
summary: |
<p>Like <code><a href="#duk_has_prop">duk_has_prop()</a></code>, but the
property name is given as a Duktape heap pointer obtained e.g. using
<code><a href="#duk_get_heapptr">duk_get_heapptr()</a></code>. If
<code>ptr</code> is NULL, <code>undefined</code> is used as the key.</p>
example: |
void *ptr;
duk_push_string(ctx, "propertyName");
ptr = duk_get_heapptr(ctx, -1);
/* String behind 'ptr' must remain reachable! */
if (duk_has_prop_heapptr(ctx, -3, ptr)) {
printf("obj has 'myProperty'\n");
} else {
printf("obj does not have 'myProperty'\n");
}
tags:
- property
- borrowed
- heapptr
seealso:
- duk_has_prop
- duk_has_prop_index
- duk_has_prop_string
- duk_has_prop_lstring
- duk_has_prop_literal
introduced: 2.2.0