static L syncListPlus(Collection l, A... more) { if (l == null) ret asList(more); synchronized(collectionMutex(l)) { ret concatLists(l, asList(more)); } }