I got this idea from XKCD's Hofstadter comic; what's the best way to create a conditional loop in (any) Lisp dialect that executes a function until it returns NIL at which time it collects the returned values into a list.

For those who haven't seen the joke, it's goes that Douglas Hofstadter's “eight-word” autobiography consists of only six words: “I'm So Meta, Even This Acronym” containing continuation of the joke: (some odd meta-paraprosdokian?) “Is Meta” — the joke being that the autobiography is actually “I'm So Meta, Even This Acronym Is Meta”. But why not go deeper?

Assume the acronymizing function META that creates an acronym from a string and splits it into words, returns NIL if the string contains but one word:

(meta "I'm So Meta, Even This Acronym") ⇒ "Is Meta"
(meta (meta "I'm So Meta, Even This Acronym")) ⇒ "Im"
(meta (meta (meta "I'm So Meta, Even This Acronym"))) ⇒ NIL

(meta "GNU is Not UNIX") ⇒ "GNU"
(meta (meta "GNU is Not UNIX")) ⇒ NIL

Now I'm looking for how to implement a function so that:

(so-function #'meta "I'm So Meta, Even This Acronym") 
⇒ ("I'm So Meta, Even This Acronym" "Is Meta" "Im")
(so-function #'meta "GNU is Not Unix")
⇒ ("GNU is Not Unix" "GNU")

What's the best way of doing this?

link|improve this question

64% accept rate
Jordan's answer "cheats" by being wired for only specific cases. For a general purpose <code>(meta)</code>, you would have to decide where word boundaries are. You could use a dictionary file. – compman Jun 29 '11 at 3:29
@compman, his question specifically said to assume the existence of meta so I wouldn't call it "cheating". Still, you have a point. I'm not quite sure how to decide where the word boundaries are though, even given a dictionary. One particular problem would be how to decide you were looking at one word and should terminate. EDIT: One way might be to say "if this word is in my dictionary or if I cannot split this word into any number of subwords such that they are all in my dictionary, terminate". – Jordan Wade Jun 29 '11 at 4:30
feedback

2 Answers

up vote 3 down vote accepted

This is easy. I don't want to write a solution, so instead I will -- but it'll be the crappy elisp version, which might lead to unexpected enlightenment if you'll follow through:

(defun so-function (f str)
  (let (x '())
    (while str (setq x (cons str x)) (setq str (funcall f str)))
    (reverse x)))

To try this out you'll need that meta, but I don't know how you'd decide where to put the spaces, so instead I'll fake it:

(defun meta (x)
  (cadr (assoc x '(("I'm So Meta, Even This Acronym" "Is Meta")
                   ("Is Meta" "Im")
                   ("GNU is Not UNIX" "GNU")))))

This makes the code that you want work. As for the enlightenment -- try to write it so instead of what you want, so-function will be a higher order function -- one that will work like this:

(funcall (so-function #'meta) "GNU is Not UNIX")

or, in Scheme:

((so-function meta) "GNU is Not UNIX")

The big hint here is that you can't do it in plain elisp (at least not without tricks from the cl library). To get full credit, avoid the mutations -- this will lead to the natural way you'd write it in Scheme, and might even look more readable than the setq version.

link|improve this answer
Shouldn't your Emacs Lisp version function call be (funcall #'so-function #'meta "GNUS is Not UNIX") which returns ("GNU is Not UNIX" "GNU")? (and similarly (funcall #'so-function #'meta "I'm So Meta, Even This Acronym")("I'm So Meta, Even This Acronym" "Is Meta" "Im")) – Baldur Jun 28 '11 at 19:10
Or just (so-function #'meta autobiography) like in Jordan Wade's answer – Baldur Jun 28 '11 at 19:12
No -- see the beginning of that part, where I said "try ti write it so ..." -- that's the exercise I gave out! – Eli Barzilay Jun 28 '11 at 21:04
feedback

Threw this together and it seems to work:

(defun collect-until-null (function initial-value)
  "Collects INITIAL-VALUE and the results of repeatedly applying FUNCTION to
   INITIAL-VALUE into a list.  When the result is NIL, iteration stops."
  (if initial-value
      (cons initial-value
            (collect-until-null function (funcall function initial-value)))))

Using a slightly modified version of the meta Eli Barzilay posted,

(defun meta (x)
  (cadr (assoc x
               '(("I'm So Meta, Even This Acronym" "Is Meta")
                 ("Is Meta" "Im")
                 ("GNU is Not UNIX" "GNU"))
               :test #'equal))) ;strings with the same characters aren't EQL

I get the result you were looking for.

CL-USER> (collect-until-null #'meta "I'm So Meta, Even This Acronym")
("I'm So Meta, Even This Acronym" "Is Meta" "Im")

CL-USER> (collect-until-null #'meta "GNU is Not UNIX")
("GNU is Not UNIX" "GNU")

Edit: @Rainer Joswig pointed out that collect-until-null will exhaust the stack if given a sufficiently large sequence. Below is Rainer's iterative version without this problem.

(defun collect-until-null-iter (function initial-value)
  "Collects INITIAL-VALUE and the results of repeatedly applying FUNCTION to
   INITIAL-VALUE into a list.  When the result is NIL, iteration stops."
  (loop for result = initial-value then (funcall function result)
        while result collect result))
link|improve this answer
stack overflow... – Rainer Joswig Jun 28 '11 at 22:58
@Rainer Joswig, could you be more specific? I re-ran it in a fresh SBCL instance and had no problems. – Jordan Wade Jun 29 '11 at 1:29
just use a long list – Rainer Joswig Jun 29 '11 at 6:15
@Rainer, that isn't helping me figure out what's wrong. Could you please post the exact code you're using that's causing an overflow? (Or link if it's too long for a comment?) – Jordan Wade Jun 29 '11 at 6:24
1  
This does the same as your code, without the need for the slightly non-standard TCO support: (loop for result = obj then (funcall func result) while result collect result) . Note also that there is the same problem as with your versions: the initial value is collected - without the function being applied to it, which is not what is documented. – Rainer Joswig Jun 29 '11 at 23:39
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.