GNU bug report logs -
#23550
25.0.93; cl.texi (for var on list by func): Fix documentation
Previous Next
Reported by: Tino Calancha <f92capac <at> gmail.com>
Date: Mon, 16 May 2016 15:47:02 UTC
Severity: minor
Tags: patch
Found in version 25.0.93
Done: Tino Calancha <tino.calancha <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
Message #8 received at 23550 <at> debbugs.gnu.org (full text, mbox):
Tino Calancha <f92capac <at> gmail.com> writes:
> * doc/misc/cl.texi (for var on list by func): Fix documentation
>
> 'cl-loop for var on list by func' behaves as in CL: 'on' expression
> need to be a list.
Well, it only needs to be a cons, because that's what the loop checks
for.
>
> emacs -Q:
>
> (require 'cl-lib)
> (setq preys '("grass" "lion" "rabbit"))
>
> (defun next-prey (x)
> "Return the name of the prey of animal X."
> (cl-loop while (not (atom x))
> do (setq x (car x)))
> (cond ((member x preys) ; elisp
> ;; (cond ((member x preys :test #'string=) ; CL
> (cond ((string= x "lion") "rabbit")
> ((string= x "rabbit") "grass")
> (t nil)))
> (t
> nil)))
> (defun next-prey-list (x)
> "Return a list with the name of the prey of animal X."
> (let ((res (next-prey x)))
> (if res
> (list res)
> nil)))
I guess the idea behind that statement is that the rest of the list can
be implied by the stepping function, e.g.
(cl-loop for y on (list "lion") by #'next-prey-list collect (car y))
;=> ("lion" "rabbit" "grass")
Works with the "in" clause too:
(cl-loop for y in (list "lion") by #'next-prey-list collect y)
;=> ("lion" "rabbit" "grass")
I guess it could be useful in combination with streams? Not sure if
it's worth having this in the manual.
This bug report was last modified 8 years and 55 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.