symstrp
symstrp(
g_value
)
=> t / nil
Description
Checks if an object is either a symbol or 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
symstrp( "foo" )
=> t
symstrp( 'foo )
=> t
symstrp( 3 )
=> nil
Related Topics
Return to top