static Set rawOnly(Set l) { Set out = similarEmptySet(l); for (Lisp x : l) if (x != null && x.isLeaf()) out.add(x.head); ret out; }