all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Generic `tree-seq` function definition?
@ 2013-09-06 14:00 Tim Visher
  0 siblings, 0 replies; 3+ messages in thread
From: Tim Visher @ 2013-09-06 14:00 UTC (permalink / raw)
  To: emacs

Hey everyone,

I'm trying to implement a generic `tree-seq` function (like [the one found
in clojure][]).

It seems very straightforward and other than translating some things
between Clojure and Elisp seemed like it should've gone off without a hitch.

But it doesn't work.

Can anyone venture a guess as to why?

The basic thing that seems to fail is that cl-labels doesn't seem to know
how to drop a local function into a map operation. You can see that from
the `one` function. When one is called directly it returns correctly but
when you try to map it it blows up in the same way.

(defun tree-seq (branch? children root)
  (cl-labels ((walk (node)
                    (cons node
                          (if (funcall branch? node)
                              (cl-mapcan 'walk (cddr (funcall children
node)))))))
    (walk root)))

(tree-seq 'file-directory-p
          (lambda (directory)
            (directory-files directory t))
          "~/Dropbox/sensitive")


(cl-labels ((one (x)
                 (if (integerp x)
                     x

                   (one 10))))

  (one (one 'a)))

;;; Boom!
;; (cl-labels ((one (x)
;;                  (if (integerp x)
;;                      x
;;                    (cl-mapcar 'one '(10 11 12)))))
;;   (one (one 'a)))


https://gist.github.com/timvisher/6458093#file-sensitive-el-L31-L54

Thanks in advance!

--

In Christ,

Timmy V.

http://blog.twonegatives.com/
http://five.sentenc.es/ -- Spend less time on mail


^ permalink raw reply	[flat|nested] 3+ messages in thread
[parent not found: <mailman.1476.1378476077.10748.help-gnu-emacs@gnu.org>]

end of thread, other threads:[~2013-09-06 16:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-06 14:00 Generic `tree-seq` function definition? Tim Visher
     [not found] <mailman.1476.1378476077.10748.help-gnu-emacs@gnu.org>
2013-09-06 15:17 ` Stefan Monnier
2013-09-06 16:05   ` Tim Visher

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.