unchecked-multiply-int

function/macrosince v0.0-1798 clojure.core/unchecked-multiply-intEdit
(unchecked-multiply-int)
(unchecked-multiply-int x)
(unchecked-multiply-int x y)
(unchecked-multiply-int x y & more)

Source docstring:
Returns the product of nums. (*) returns 1.
Function code @ clojurescript:src/main/cljs/cljs/core.cljs
(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)))

Macro code @ clojurescript:src/main/clojure/cljs/core.cljc
(core/defmacro ^::ana/numeric unchecked-multiply-int
  ([& xs] `(* ~@xs)))