fixp
fixp(g_value) =>t/nil
Description
Checks whether the specified object is an integer, that is, a fixed number.
The suffix p is usually added to the name of a function to indicate that it is a predicate function. This function is equivalent to integerp.
Arguments
Value Returned
|
If g_value is an integer, a data type whose internal name is |
|
Examples
fixp(3)
=> t
fixp(3.0)
=> nil
Related Topics
Return to top