static L concatLists_syncIndividual(Iterable... lists) {
new L l;
if (lists != null) for (Iterable list : lists)
syncAddAll(l, list);
return l;
}
static L concatLists_syncIndividual(Collection extends Iterable> lists) {
new L l;
if (lists != null) for (Iterable list : lists)
syncAddAll(l, list);
return l;
}