stringp
stringp(g_value) =>t/nil
Description
Checks if an object is a string.
The suffix p is usually added to the name of a function to indicate that it is a predicate function.
Arguments
Value Returned
Examples
stringp( 93)
=> nil
stringp( "93")
=> t
Related Topics
Return to top