static long conceptID(Concept c) {
  ret c == null ? 0 : c.id;
}

static long conceptID(Concept.Ref ref) {
  ret conceptID(cDeref(ref));
}