static S firstStartingWithIC_drop(Collection l, fS prefix) { for (S s : unnull(l)) if (swic(s, prefix)) ret substring(s, l(prefix)); null; } static S firstStartingWithIC_drop(S prefix, Collection l) { ret firstStartingWithIC_drop(l, prefix); }