static void addAll(Collection c, Collection b) { c.addAll(b); } static void addAll(Collection c, A... b) { c.addAll(Arrays.asList(b)); }