// binary legacy signature static O[] toObjectArray(Cl c) { ret toObjectArray((Iterable) c); } static O[] toObjectArray(Iterable c) { L l = asList(c); return l.toArray(new O[l.size()]); }