static Cl nuLike conceptsSortedByFieldCI(Class c, S field) {
ret conceptsSortedByFieldCI(db_mainConcepts(), c, field);
}
static Cl conceptsSortedByFieldCI(Concepts concepts, Class c, S field) {
// indexed
IFieldIndex index = concepts.getCIFieldIndex(c, field);
if (index cast IConceptCounter)
ret (Cl) index.allConcepts();
// sort manually
ret sortedByFieldIC(field, concepts.list(c));
}