static Cl lambdaMapLike filterCollectionInPlace(IF1 pred, Cl l) { if (l == null) ret l; var it = l.iterator(); while (it.hasNext()) if (!pred.get(it.next())) it.remove(); ret l; }