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