static S firstStartingWith(Collection l, S prefix) { for (S s : unnull(l)) if (startsWith(s, prefix)) ret s; null; }