We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f677b10 commit 999da27Copy full SHA for 999da27
src/cljs/cljs/core.cljs
@@ -2597,6 +2597,7 @@ reduces them without incurring seq initialization"
2597
"Takes a function f and fewer than the normal arguments to f, and
2598
returns a fn that takes a variable number of additional args. When
2599
called, the returned function calls f with args + additional args."
2600
+ ([f] f)
2601
([f arg1]
2602
(fn [& args] (apply f arg1 args)))
2603
([f arg1 arg2]
0 commit comments