static L litsynclist(A... a) { L l = syncList(); if (a != null) for (A x : a) l.add(x); ret l; }