sbool containsStartingWith(Collection l, S prefix) { for unnull (S s : l) if (startsWith(s, prefix)) true; false; }