function | removed v0.0-2277 | added v0.0-1798 | Edit |
(unchecked-substract-int x)
(unchecked-substract-int x y)
(unchecked-substract-int 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-int
([x] (cljs.core/unchecked-subtract-int x))
([x y] (cljs.core/unchecked-subtract-int x y))
([x y & more] (reduce unchecked-substract-int (cljs.core/unchecked-subtract-int x y) more)))