ClojureDocs

导航

命名空间

comp

clojure.core

1.0 起可用 (源代码)
  • (comp)
  • (comp f)
  • (comp f g)
  • (comp f g & 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.