- :logical
integer?
checks if given value is of type :integer
Parameters
integer? value :any
Attributes
big | check if, internally, it's a bignum |
Returns
Examples
copyprint integer? 123 ; true print integer? "hello" ; false
copyinteger?.big 123 ; => false integer?.big 12345678901234567890 ; => true