diff options
author | Konrad Hinsen <konrad.hinsen@laposte.net> | 2009-05-05 16:39:25 +0000 |
---|---|---|
committer | Konrad Hinsen <konrad.hinsen@laposte.net> | 2009-05-05 16:39:25 +0000 |
commit | 637ce542010b34381948f914e0b6829b41602e34 (patch) | |
tree | 63b9b15e8a11662e70f8505f1026e37df289c0bf /src/clojure/contrib/generic/arithmetic.clj | |
parent | 8b8935826f5c97d7759df5fad8da1a6d45b2f1aa (diff) |
Documentation updates
Diffstat (limited to 'src/clojure/contrib/generic/arithmetic.clj')
-rw-r--r-- | src/clojure/contrib/generic/arithmetic.clj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/clojure/contrib/generic/arithmetic.clj b/src/clojure/contrib/generic/arithmetic.clj index 2f28799f..90b6e659 100644 --- a/src/clojure/contrib/generic/arithmetic.clj +++ b/src/clojure/contrib/generic/arithmetic.clj @@ -78,6 +78,7 @@ "Return the difference of the first argument and the sum of all other arguments. The minimal implementation for type ::my-type is the binary form with dispatch value [::my-type ::my-type]." + {:arglists '([x] [x y] [x y & more])} nary-dispatch) (defmethod - nulary-type @@ -110,6 +111,7 @@ (defmulti * "Return the product of all arguments. The minimal implementation for type ::my-type is the binary form with dispatch value [::my-type ::my-type]." + {:arglists '([x] [x y] [x y & more])} nary-dispatch) (defmethod * nulary-type @@ -142,6 +144,7 @@ "Return the quotient of the first argument and the product of all other arguments. The minimal implementation for type ::my-type is the binary form with dispatch value [::my-type ::my-type]." + {:arglists '([x] [x y] [x y & more])} nary-dispatch) (defmethod / nulary-type |