(unchecked-subtract x)
(unchecked-subtract x y)
(unchecked-subtract x y & more)
If no ys are supplied, returns the negation of x, else subtracts
the ys from x and returns the result.
Source
(defn
unchecked-subtract
"If no ys are supplied, returns the negation of x, else subtracts\n the ys from x and returns the result."
([x] (cljs.core/unchecked-subtract x))
([x y] (cljs.core/unchecked-subtract x y))
([x y & more]
(reduce unchecked-subtract (cljs.core/unchecked-subtract x y) more)))