static L havingFieldNotNull(Iterable l, S field) { ret filter(l, o -> getOpt(o, field) != null); } static L havingFieldNotNull(S field, Iterable l) { ret havingFieldNotNull(l, field); }