static Lisp englishToLisp_bestParse(S... texts) { new Best best; for (S text : asLinkedHashSet(texts)) if (text != null) { Lisp l = englishToLisp(text); best.put(l, parseQuality(l)); } ret best!; }