// doesn't trigger on remove, just register and update
static void nuLike onIndividualConceptChange_notOnAllChanged(Concepts cc default db_mainConcepts(), Class type, IVF1 r) {
if (r != null) cc?.addConceptIndex(new IConceptIndex {
public void update(Concept c) {
if (instanceOf(c, type))
r.get((A) c);
}
public void remove(Concept c) {}
});
}