On Dec 16, 6:00 am, samppi <rbysam...@gmail.com> wrote:
> I'm trying to rewrite a loop to use higher-level functions instead.

;; Here is my 'novelty' answer... just for fun! [not a serious
answer] ;;

(defn bounce
  [start pred iter]
  (trampoline
    (fn f [x]
      (if (pred x)
        x
        (fn []
          (f (iter x)))))
    start))

(bounce 1 (partial = 5) inc)
=> 5


-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to