static L startingWith(Collection l, fS prefix) { ret [S s : unnull(l) | startsWith(s, prefix)]; } static L startingWith(S prefix, Collection l) { ret startingWith(l, prefix); }