From: Klaus Berndl <klaus.berndl@sdm.de>
Subject: Re: alist and multiple values for one key
Date: Mon, 20 Jan 2003 17:07:01 +0100 [thread overview]
Message-ID: <usmvnolei.fsf@sdm.de> (raw)
In-Reply-To: dafb954c.0301200503.2118ecf9@posting.google.com
On 20 Jan 2003, Norbert C. wrote:
> Hi,
>
> I would lile to find the "good way" to retrieve multiple
values
> for a given key in an alist.
>
> But I didn't find a natural way to do it. For example :
> (setq trees '((pine . cones) (pine . acorns) (oak . acorns) (maple .
> seeds)))
> ==> ((pine . cones) (pine . acorns) (oak . acorns) (maple . seeds))
> (assoc 'pine trees)
> ==> (pine . cones)
>
> What I'd like is something that returns each value associated with
> 'pine.
>
> Any thought ?
Multimaps are unfortunately not build in in Emacs. But you can implement
it
very easy. Here is a first fast hack how you can do it, probably not
robust
and fancy enough but it gives you a first impression:
,----
| ;; a fast hack for a multimap
| (defvar multimap nil)
|
| (defun multimap-add (key value)
| (let ((elem (assoc key multimap)))
| (if elem
| (when (not (member value (cdr elem)))
| (setcdr elem (append (list value) (cdr elem))))
| (setq multimap (cons (list key value) multimap)))
| multimap))
|
| (defun multimap-get (key)
| (interactive "sKey: ")
| (message "%s" (cdr (assoc key multimap))))
|
|
| ;; some tests
| (multimap-add "key1" "value1-1")
| (multimap-add "key1" "value1-2")
| (multimap-add "key2" "value2-1")
| (multimap-add "key2" "value2-2")
| (multimap-add "key2" "value2-3")
| (multimap-add "key3" "value3-3")
`----
Klaus
--
Klaus Berndl mailto: klaus.berndl@sdm.de
sd&m AG http://www.sdm.de
software design & management
Thomas-Dehler-Str. 27, 81737 München, Germany
Tel +49 89 63812-392, Fax -220
next prev parent reply other threads:[~2003-01-20 16:07 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-01-20 13:03 alist and multiple values for one key Norbert C.
2003-01-20 16:03 ` Friedrich Dominicus
2003-01-20 23:53 ` Hannu Koivisto
2003-01-21 6:30 ` Friedrich Dominicus
2003-01-21 6:57 ` Friedrich Dominicus
2003-01-20 16:07 ` Klaus Berndl [this message]
2003-01-20 17:18 ` Kai Großjohann
2003-01-20 17:19 ` Kai Großjohann
2003-01-20 23:45 ` Hannu Koivisto
2003-01-21 10:53 ` Oliver Scholz
2003-01-21 11:04 ` David Kastrup
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=usmvnolei.fsf@sdm.de \
--to=klaus.berndl@sdm.de \
/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.
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 read-only IMAP folder(s) and NNTP newsgroup(s).