integer?

checks if given value is of type :integer


Parameters

integer? value :any

Attributes

bigcheck if, internally, it's a bignum

Returns

  • :logical

Examples

copy
print integer? 123 ; true print integer? "hello" ; false

copy
integer?.big 123 ; => false integer?.big 12345678901234567890 ; => true

Related