static bool syncAddAll(Collection c, Iterable b) { if (c == null || b == null) false; synchronized(c) { ret c.addAll(asCollection(b)); } }