(defn find-holes "Recursively finds all symbols starting with _ in form." [form] (sort (distinct (filter #(.startsWith (name %) "_") (find-symbols form)))))
Comments top
No comments for find-holes. Log in to add a comment.