nat-int?

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

Source docstring:
Return true if x satisfies int? and is a natural integer value.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn nat-int?
  [x]
  (cond
    (integer? x)
    (not (neg? x))

    (instance? goog.math.Integer x)
    (not (.isNegative x))

    (instance? goog.math.Long x)
    (not (.isNegative x))

    :else false))