OVMS3/OVMS.V3/components/duktape/config/config-options/DUK_USE_HSTRING_ARRIDX.yaml

13 lines
422 B
YAML

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.