Return true if x satisfies integer? or is an instance of goog.math.Integer
or goog.math.Long.
Source
(defnint?"Return true if x satisfies integer? or is an instance of goog.math.Integer\n or goog.math.Long."[x](or(integer?x)(instance?goog.math.Integerx)(instance?goog.math.Longx)))