From: Michael Heerdegen <michael_heerdegen@web.de>
To: Eli Zaretskii <eliz@gnu.org>
Cc: jwiegley@gmail.com, emacs-devel@gnu.org
Subject: Re: pcase docs
Date: Sat, 23 Jan 2016 16:18:28 +0100 [thread overview]
Message-ID: <87r3h88gu3.fsf@web.de> (raw)
In-Reply-To: <83y4bg4ag3.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 23 Jan 2016 16:50:04 +0200")
Eli Zaretskii <eliz@gnu.org> writes:
> So maybe we should drop everything and make sure those doc strings are
> corrected?
I think we have already made some good progress since then. But where
things are unclear, things should be improved further.
> > In the sense of pcase-defmacro, FUN, EXPR or the PATTERNs play the role
> > of arguments of the pattern.
>
> I don't think I see any of this in the doc string...
... of pcase-defmacro. You must read between the lines ;-)
Yes, it's missing.
> I expected to see its use like this:
>
> (map SOMETHING)
Indeed.
> But instead I see this:
>
> (pcase type
> (`list (map-pairs map))
> (`hash-table (map--into-hash-table map))
> (_ (error "Not a map type name: %S" type))))
> IOW, there's no 'map', which was defined with pcase-defmacro, but
> there are 'list' and 'hash-table', which weren't. And btw, why "`list"
> instead of "`(list"?
That's something completely unrelated to the pcase `map' pattern, just a
random usage of pcase. It's equivalent to
(cl-case type
((list) (map-pairs map))
((hash-table) (map--into-hash-table map))
(t (error "Not a map type name: %S" type)))
i.e., this just tests whether TYPE is bound to one of two constants.
A usage of the function `map-into' would look like:
(map-into '((1 . a) (2 . b)) 'hash-table)
==> an equivalent hash table to this alist
A usage of the pcase map pattern would look like this:
(pcase '((1 . a) (2 . b) (3 . c))
((map (2 x)) x))
==> b
Semantic and doc of the `map' pcase pattern are still a bit strange (or
wrong), I must say. I had hoped Nicolas would have time to improve the
doc a bit.
Michael.
next prev parent reply other threads:[~2016-01-23 15:18 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-14 19:47 pcase docs Eli Zaretskii
2016-01-22 18:07 ` John Wiegley
2016-01-22 19:46 ` Michael Heerdegen
2016-01-22 19:58 ` Michael Heerdegen
2016-01-22 21:30 ` Eli Zaretskii
2016-01-23 10:16 ` Michael Heerdegen
2016-01-23 11:43 ` Eli Zaretskii
2016-01-23 12:05 ` Michael Heerdegen
2016-01-23 13:35 ` Eli Zaretskii
2016-01-23 14:22 ` Michael Heerdegen
2016-01-23 14:50 ` Eli Zaretskii
2016-01-23 15:18 ` Michael Heerdegen [this message]
2016-01-24 8:50 ` Nicolas Petton
2016-01-23 15:51 ` Michael Heerdegen
2016-01-23 12:28 ` Alan Mackenzie
2016-01-23 13:13 ` Eli Zaretskii
2016-01-23 20:48 ` Drew Adams
2016-01-24 5:07 ` Stefan Monnier
2016-01-22 21:28 ` Eli Zaretskii
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=87r3h88gu3.fsf@web.de \
--to=michael_heerdegen@web.de \
--cc=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=jwiegley@gmail.com \
/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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.