zsh-users
 help / color / mirror / code / Atom feed
From: Dominik Ritter <dritter03@googlemail.com>
To: zsh-users@zsh.org
Subject: How to preserve order of associative array?
Date: Sat, 7 Nov 2015 17:11:14 +0100	[thread overview]
Message-ID: <CAJjRh0RhVOWz95oCqMuGZ5RMbn39ZpVa3r0KR2cwVqvZ+ChEug@mail.gmail.com> (raw)

Hi everyone!

I struggle to the order of an associative array right. If I take the
example from zsh-lovers man page:

    $ typeset -A ass_array; ass_array=(one 1 two 2 three 3 four 4)
    $ print ${(k)ass_array} # prints keys
    one four two three
    $ print ${(v)ass_array} # prints values
    1 4 2 3

I would expect that to be the keys sorted as they appear in the array
(one, two, three, four).

I tried to sort them in array index order, but without luck:
print ${(ak)ass_array}

The other sort-modifiers won't help me, as I need a hierarchy in my
array keys (neither lexically, nor numerical).

Thanks for any help. Regards,
Dominik


             reply	other threads:[~2015-11-07 16:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-07 16:11 Dominik Ritter [this message]
2015-11-07 17:08 ` Mikael Magnusson
2015-11-07 17:51 ` Bart Schaefer
2015-11-10 20:52   ` Dominik Ritter
2015-11-11  0:59     ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJjRh0RhVOWz95oCqMuGZ5RMbn39ZpVa3r0KR2cwVqvZ+ChEug@mail.gmail.com \
    --to=dritter03@googlemail.com \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).