integerp
integerp(g_obj) =>t/nil
Description
Checks if an object is an integer. This function is the same as fixp.
The suffix p is usually added to the name of a function to indicate that it is a predicate function.
Arguments
Value Returned
Examples
(integerp 123)
=> t
(integerp "123")
=> nil
Related Topics
Return to top