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