I'd like to exclude from a list those sublists containing an element
that satisfies a given predicate; unfortunately, it appears as though
I have to convert to a set, subset, then retroconvert to a list:
listify(subset(setify(elements),
lambda([element], not(some(predicatep, element))))));
Is there any more elegant way of filtering lists without resorting to,
say, native Lisp?