On Mon Sep 29 11:01:08 2025 +0000, Rémi Bernon wrote:
It's usually not a good idea to increment realloc size by 1, you should rather count the max number of additional properties and allocate a large enough array upfront. It's fine to overallocate if there's duplicate entries.
Unfortunately `IIterator<HSTRING>` only allows moving forward, and it doesn't have a length property as well :/. I'll use a growth factor instead, thanks.