(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.
Source
(defn
unchecked-multiply-int
"Returns the product of nums. (*) returns 1."
([] 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)))