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