int?

functionsince v1.9.75 clojure.core/int?Edit
(int? x)

Source docstring:
Return true if x satisfies integer? or is an instance of goog.math.Integer
or goog.math.Long.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn int?
  [x]
  (or (integer? x)
      (instance? goog.math.Integer x)
      (instance? goog.math.Long x)))