static L notEndingWith(Collection l, fS suffix) { ret [S s : unnull(l) | !endsWith(s, suffix)]; } static L notEndingWith(S suffix, Collection l) { ret notEndingWith(l, suffix); }