On 09/29/2017 07:25 PM, Brandon Allbery wrote:
On Fri, Sep 29, 2017 at 9:55 PM, ToddAndMargo <toddandma...@zoho.com <mailto:toddandma...@zoho.com>> wrote:

    for %SmtpIni.kv -> $key, $value { say $key; }

    Does "say" the keys in the order that I created them.

    Is there a way to get them to do so?


Not without storing that order somewhere yourself and using it to retrieve values. The point of a hash is that it computes hash values from its keys for fast lookup, and to the extent that any order can be said to exist for keys in a hash, it will be related somehow to those hash values. As a practical matter, Hashes are not considered to have any ordering.

Poop!

Thank you for the education.

-T

Reply via email to