static L startingWith_dropPrefix(Collection l, fS prefix) { new L out; for (S s : unnull(l)) if (startsWith(s, prefix)) out.add(substring(s, l(prefix))); ret out; } static L startingWith_dropPrefix(S prefix, Collection l) { ret startingWith_dropPrefix(l, prefix); }