On Mon, Nov 24, 2008 at 6:46 PM, Randall R Schulz <[EMAIL PROTECTED]> wrote:
>
> On Monday 24 November 2008 15:14, dokondr wrote:
>>
>> And what is 'comp'?
>
> When in doubt:
>
> - Clojure native API
>  <http://clojure.org/api>
>
> - comp
>  <http://clojure.org/api#toc122>

Or:

user=> (doc comp)
-------------------------
clojure.core/comp
([& fs])
  Takes a set of functions and returns a fn that is the composition
  of those fns.  The returned fn takes a variable number of args,
  applies the rightmost of fns to the args, the next
  fn (right-to-left) to the result, etc.

- J.

--~--~---------~--~----~------------~-------~--~----~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to