Is there a better way to locate the next entry, either by an integer idx
or by a key or some other means?
leo
It's constant time if you keep a bucket index and a pointer to the
current hash bucket in the iterator (see e.g. hash.c:hash_clone()).
/s
Thanks for the hint. That's it (albeit no pointer because of GC).
Done.
> /s
leo