static Collection nuLike distinctCIFieldValuesOfConcepts(Class c, S field) { ret distinctCIFieldValuesOfConcepts(db_mainConcepts(), c, field); } static Collection distinctCIFieldValuesOfConcepts(Concepts concepts, Class c, S field) { // indexed IFieldIndex index = concepts.getCIFieldIndex(c, field); if (index != null) ret index.allValues(); // table scan Set set = ciSet(); for (A x : concepts.list(c)) set.add((S) getOpt(x, field)); ret set; }