static L filterConcepts(L list, O... params) { if (empty(params)) ret list; new L l; for (A x : list) if (checkConceptFields(x, params)) l.add(x); ret l; }