diff options
author | Rich Hickey <richhickey@gmail.com> | 2007-09-28 12:17:55 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2007-09-28 12:17:55 +0000 |
commit | 21114b20f1697a7aee48a9866b7e7709a4e45b70 (patch) | |
tree | 35e4d56f50f8d4903216e0bd8529af88c5dee898 /src | |
parent | a8abbf363f364c5fd1fbf24b0514215fe277898d (diff) |
renamed curry to appl
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.clj b/src/boot.clj index 6a734a88..ba29331d 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -344,7 +344,7 @@ (recur ((first fs) ret) (rest fs)) ret))))) -(defn curry +(defn appl ([f arg1] (fn [& args] (apply f arg1 args))) ([f arg1 arg2] |