subst
subst(g_xg_yl_arg) =>l_result
Description
Substitutes one object for another object in a list.
Arguments
Value Returned
|
Result of substituting g_x for all |
Examples
subst( 'a 'b '(a b c) )
=> (a a c)
subst('x 'y '(a b y (d y (e y))))
=> (a b x (d x (e x )))
Related Topics
Return to top