unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Kaushal Modi <kaushal.modi@gmail.com>
To: Michael Heerdegen <michael_heerdegen@web.de>
Cc: Help Gnu Emacs mailing list <help-gnu-emacs@gnu.org>
Subject: Re: Using let-bound var inside pcase conditions
Date: Mon, 17 Apr 2017 20:40:19 +0000	[thread overview]
Message-ID: <CAFyQvY09MNNXWuECbNAAtHYUFap6YhDy0DsWn6NFGmMwd0k4-A@mail.gmail.com> (raw)
In-Reply-To: <87tw5mdba4.fsf@drachen>

On Mon, Apr 17, 2017 at 4:33 PM Michael Heerdegen <michael_heerdegen@web.de>
wrote:

> I also try this from time to time just to remember that it's wrong: the
> first appearance of a symbol in a pcase pattern is never transformed
> into an `eq'uality test.  Sometimes that's surprising (especially in
> backquote patterns), but that's how it's defined.
>
> BTW, `nil is equivalent to 'nil, and `,symbol is equivalent to just
> symbol as a pattern.
>

Thanks! I did not know that.


> To your question: I guess the shortest correct pattern is
>
>   (pred (eq one))
>

Works! Thank you.

Here the code again for completeness (or my future-self ending up on this
thread while searching the Intrawebs):

;; -*- lexical-binding: t; -*-
;; http://lists.gnu.org/archive/html/help-gnu-emacs/2017-04/msg00123.html

(defun pcase-test (var)
  (let ((one 1)
        (two 2))

    (message "(hard-coded)  Value is %s." (pcase var
                                            (`nil "nil")
                                            (1 "one")
                                            (2 "two")
                                            (_ "none of the expected")))
    (message "(vars - bad)  Value is %s." (pcase var
                                            (`nil "nil")
                                            (`,one "one")
                                            (`,two "two")
                                            (_ "none of the expected")))
    (message "(vars - good) Value is %s." (pcase var
                                            (`nil "nil")
                                            ((pred (eq one)) "one")
                                            ((pred (eq two)) "two")
                                            (_ "none of the expected")))))

(pcase-test nil)
(pcase-test 1)
(pcase-test 2)
(pcase-test 3)

-- 

Kaushal Modi


      reply	other threads:[~2017-04-17 20:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-17 18:07 Using let-bound var inside pcase conditions Kaushal Modi
2017-04-17 20:33 ` Michael Heerdegen
2017-04-17 20:40   ` Kaushal Modi [this message]

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=CAFyQvY09MNNXWuECbNAAtHYUFap6YhDy0DsWn6NFGmMwd0k4-A@mail.gmail.com \
    --to=kaushal.modi@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=michael_heerdegen@web.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).