One higher-order function I've found useful as I've goofed around with
clojure has been one that I made up myself, but it's proved so useful
and so simple that I have to believe it's in core somewhere:

(defn pipe [test value f]
  (if (test value)
        (f value)
        value))

Is this a core function I'm just missing?

-- 
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