static LinkedList cloneAndClearAsLinkedList(L l) { LinkedList l2 = cloneLinkedList(l); l.clear(); ret l2; }