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.
 
 
 
 
 
 

11 lines
424 B

define: DUK_USE_HSTRING_LAZY_CLEN
introduced: 2.2.0
default: true
tags:
- performance
description: >
When enabled, duk_hstring charlen is computed only when accessed; because
the charlen of most strings is not accessed during their lifetime, this
reduces unnecessary charlen calculations. When disabled, charlen is computed
during interning which has smaller code footprint at slightly slower charlen
handling.