static Cl concatCollections_conservative(Cl a, Cl b) { if (empty(a)) ret b; if (empty(b)) ret a; ret concatLists(a, b); }