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.
 
 
 
 
 
 

26 lines
613 B

name: duk_has_prop_lstring
proto: |
duk_bool_t duk_has_prop_lstring(duk_context *ctx, duk_idx_t obj_idx, const char *key, duk_size_t key_len);
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 string with explicit length.</p>
example: |
if (duk_has_prop_lstring(ctx, -3, "internal" "\x00" "nul", 12)) {
printf("obj has 'internal[00]nul'\n");
} else {
printf("obj does not have 'internal[00]nul'\n");
}
tags:
- property
seealso:
- duk_has_prop_string
introduced: 2.0.0