zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: How to preserve order of associative array?
Date: Sat, 7 Nov 2015 09:51:40 -0800	[thread overview]
Message-ID: <151107095140.ZM24168@torch.brasslantern.com> (raw)
In-Reply-To: <CAJjRh0RhVOWz95oCqMuGZ5RMbn39ZpVa3r0KR2cwVqvZ+ChEug@mail.gmail.com>

On Nov 7,  5:11pm, Dominik Ritter wrote:
}
} I struggle to the order of an associative array right.

Second paragraph in the doc under "Parameters":

  The attributes of a parameter determine the _type_ of its value, often
  referred to as the parameter type or variable type, and also control
  other processing that may be applied to the value when it is referenced.
  The value type may be a _scalar_ (a string, an integer, or a floating
  point number), an array (indexed numerically), or an _associative_
  array (an unordered set of name-value pairs, indexed by name, also
  referred to as a _hash_).

You can simulate an ordered set of name-value pairs like this (need zsh
version 5.1 for assigning to an array during typeset):

    typeset -a ord_array=(one 1 two 2 three 3 four 4)
    print ${ord_array[ord_array[(i)three]+1]}


  parent reply	other threads:[~2015-11-07 17:51 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-07 16:11 Dominik Ritter
2015-11-07 17:08 ` Mikael Magnusson
2015-11-07 17:51 ` Bart Schaefer [this message]
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=151107095140.ZM24168@torch.brasslantern.com \
    --to=schaefer@brasslantern.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).