xcons
xcons(
l_list
g_element
)
=> l_result
Description
Adds an element to the beginning of a list. Equivalent to cons but the order of the arguments is reversed.
Arguments
Value Returned
Examples
xcons( '(b c) 'a )
=> ( a b c )
Related Topics
Return to top