static L combineLists(L a, L b) { if (empty(a)) ret b; if (empty(b)) ret a; if (!a instanceof CombinedList) a = combinedList_ll(a); a/CombinedList.addList(b); ret a; }