zsh-workers
 help / color / mirror / code / Atom feed
* Is there an idiom for converting an array to an associative array?
@ 2004-01-15 17:05 Matt Armstrong
  2004-01-16  4:23 ` Bart Schaefer
  0 siblings, 1 reply; 4+ messages in thread
From: Matt Armstrong @ 2004-01-15 17:05 UTC (permalink / raw)
  To: zsh-workers

I'm looking for an idiom that will convert the array (a b c) into
(a "" b "" c "") so I can assign it easily to an associative array.

Right now I've got ugliness like this:

    array=(a b c)
    set -A assoc
    for i in $array; do
        assoc[$i]=""
    done

Any pointers?

-- 
matt


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-01-18 18:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-15 17:05 Is there an idiom for converting an array to an associative array? Matt Armstrong
2004-01-16  4:23 ` Bart Schaefer
2004-01-18  2:59   ` Matt Armstrong
2004-01-18 18:50     ` Bart Schaefer

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).