function | removed v0.0-2277 | added v0.0-1798 | Edit |
(unchecked-substract x)
(unchecked-substract x y)
(unchecked-substract x y & more)
If no ys are supplied, returns the negation of x, else subtracts the ys from x and returns the result.
(defn ^number unchecked-substract
([x] (cljs.core/unchecked-subtract x))
([x y] (cljs.core/unchecked-subtract x y))
([x y & more] (reduce unchecked-substract (cljs.core/unchecked-subtract x y) more)))