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.
12 lines
422 B
12 lines
422 B
define: DUK_USE_HSTRING_ARRIDX
|
|
introduced: 2.0.0
|
|
default: true
|
|
tags:
|
|
- lowmemory
|
|
description: >
|
|
When enabled, duk_hstring stores a precomputed array index (or "not an array
|
|
index") value related to the string. This reduces code footprint and
|
|
improves performance a littl ebit.
|
|
|
|
When disabled, duk_hstring has a flag indicating whether it is an array
|
|
index or not, but the actual value is computed on-the-fly.
|
|
|