Basic Examples 
(2)
 

JoinMost
uses
Join
to join its argument
{3,4}
with whatever else it encounters, which one may think of as "Most" of the
Join
:
In[217]:=
[◼]
JoinMost
[{3,4}][{5,6,7},{8,9,10,11}]
Out[217]=
{5,6,7,8,9,10,11,3,4}
———
When used with an
Association
as its argument,
JoinMost
will override key-value pairs from the sequence of lists it encounters if any of them have the same key:
In[219]:=
[◼]
JoinMost
["a"0][Association["a"7,"b"9]]
Out[219]=
a0,b9

Scope 
(3)
 


Applications 
(1)
 


Properties and Relations 
(2)
 


Possible Issues 
(1)
 


Neat Examples 
(1)
 
