unchecked-substract-int

MOVED, please see cljs.core/unchecked-subtract-int
functionremoved v0.0-2277added v0.0-1798Edit
(unchecked-substract-int x)
(unchecked-substract-int x y)
(unchecked-substract-int x y & more)

Source docstring:
If no ys are supplied, returns the negation of x, else subtracts
the ys from x and returns the result.
Source code @ clojurescript:src/cljs/cljs/core.cljs
(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)))