(unchecked-multiply)
(unchecked-multiply x)
(unchecked-multiply x y)
(unchecked-multiply x y & more)
Returns the product of nums. (*) returns 1.
Source
(defn
unchecked-multiply
"Returns the product of nums. (*) returns 1."
([] 1)
([x] x)
([x y] (cljs.core/unchecked-multiply x y))
([x y & more]
(reduce unchecked-multiply (cljs.core/unchecked-multiply x y) more)))