(unchecked-add-int)
(unchecked-add-int x)
(unchecked-add-int x y)
(unchecked-add-int x y & more)
Returns the sum of nums. (+) returns 0.
Source
(defn
unchecked-add-int
"Returns the sum of nums. (+) returns 0."
([] 0)
([x] x)
([x y] (cljs.core/unchecked-add-int x y))
([x y & more]
(reduce unchecked-add-int (cljs.core/unchecked-add-int x y) more)))