|
Further Examples: Insert
This inserts d at the fourth position of this list.
In[1]:= 
Out[1]= 
This inserts b at the first and second positions.
In[2]:= 
Out[2]= 
This inserts A, B, C between c and d.
In[3]:= 
Out[3]= 
The use of Unevaluated is necessary.
In[4]:= 

Out[4]= 
This function "sows" copies of the specified object between each pair of entries of expr.
In[5]:= 
In[6]:= 
Out[6]= 
This variant also places copies before the first and after the last elements.
In[7]:= 
In[8]:= 
Out[8]= 
In[9]:= 
|