all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mike Mattie <codermattie@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: fif function from On Lisp
Date: Wed, 5 Mar 2008 16:34:33 -0800	[thread overview]
Message-ID: <20080305163433.21c18db8@reforged> (raw)
In-Reply-To: <5ac4de71-b4e5-4b3d-997c-e438b816740e@d4g2000prg.googlegroups.com>

[-- Attachment #1: Type: text/plain, Size: 924 bytes --]

On Tue, 4 Mar 2008 04:31:19 -0800 (PST)
weber <hugows@gmail.com> wrote:

> Hi folks.
> For some reason this function from On Lisp doesn't work:
> 
> (defun fif (a b &optional c)
>   '(lambda (x)
> 	(if (funcall a x)
> 		(funcall b x)
> 		(unless (null c) (funcall c x)))))
> 
> I should be able to call it like this:
> 
> (mapcar (fif 'zerop '1+ 1-) '(0 1 2 3) => (1 0 1 2)
> 
> but i'm probably missing something that is differs from Common Lisp to
> Elisp.
> 
> Thanks in advance,
> weber

(require 'cl)

(defun plus (x)
  (+ x 1))

(defun minus (x)
  (- x 1))

(defun fif (a b &optional c)
  (lexical-let
    ((a-fn  a)
     (b-fn  b)
     (c-fn  c))

    (lambda (x)
      (if (funcall a-fn x)
        (funcall b-fn x)
        (if (functionp c-fn) (funcall c-fn x))))))

(mapcar (fif 'zerop 'plus 'minus) '(0 1 2 3))  ;; => (1 0 1 2)

This works here.

Cheers,
Mike Mattie

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

      parent reply	other threads:[~2008-03-06  0:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-04 12:31 fif function from On Lisp weber
2008-03-04 12:53 ` Johan Bockgård
2008-03-04 13:59   ` weber
2008-03-04 14:07     ` weber
2008-03-04 14:12       ` weber
2008-03-06  0:34 ` Mike Mattie [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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080305163433.21c18db8@reforged \
    --to=codermattie@gmail.com \
    --cc=help-gnu-emacs@gnu.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 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.