listp
listp(g_value) =>t/nil
Description
Checks whether the specified object is a list.
The suffix p is usually added to the name of a function to indicate that it is a predicate function.
Arguments
Value Returned
|
If g_value is a list, a data type whose internal name is also |
|
Examples
listp('(1 2 3))
=> t
listp( nil )
=> t
listp( 1 )
=> nil
Related Topics
Return to top