| function/macro | since v0.0-1798 | Edit |
(unchecked-multiply-int)(unchecked-multiply-int x)(unchecked-multiply-int x y)(unchecked-multiply-int x y & more)Returns the product of nums. (*) returns 1.
(defn ^number unchecked-multiply-int
([] 1)
([x] x)
([x y] (cljs.core/unchecked-multiply-int x y))
([x y & more] (reduce unchecked-multiply-int (cljs.core/unchecked-multiply-int x y) more)))(core/defmacro ^::ana/numeric unchecked-multiply-int
([& xs] `(* ~@xs)))