function | since v1.9.75 | clojure.core/int? | Edit |
(int? x)
Return true if x satisfies integer? or is an instance of goog.math.Integer or goog.math.Long.
(defn int?
[x]
(or (integer? x)
(instance? goog.math.Integer x)
(instance? goog.math.Long x)))