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