我目前正在编写数量未定义的函数,因此我在 clojure.core 等中寻找示例。
这是例如comp
(clojure.core)的定义
(defn comp
"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."
{:added "1.0"
:static true}
([] identity)
([f] f)
([f g]
(fn
([] (f (g)))
([x] (f (g x)))
([x y] (f (g x y)))
([x y z] (f (g x y z)))
([x y z & args] (f (apply g x y z args)))))
([f g & fs]
(reduce1 comp (list* f g fs))))
如您所见,对于 arities [fg],代码详细说明了 2 和 3 个参数 (xy ; x, y, z) 的值,即使它可以直接跳转到 [x & args]。
有什么性能原因吗?或者它是一个约定?我想调用apply
可能会影响性能,我不知道。
我们在现实生活中通常最多使用3D函数和2个函数的组合,也许是因为这个。
谢谢