On Thu, Aug 15, 2019 at 05:26:03PM +0200, Léa Gris wrote:
> Is there a way to control the order of entries in an associative array?

No.

> What rules applies to the order of entries?

None.

If you require both an associative array and an ordered list, then you
will need two different data structures for that.  The ordered list may
be implemented as an indexed array, which preserves ordering.

Reply via email to