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