Returns a list of potential dot method name completions for a given
namespace
(defn potential-dot
"Returns a list of potential dot method name completions for a given
namespace"
([] (potential-dot *ns*))
([ns]
(map #(str "." %) (set (map member-name (mapcat instance-methods (vals (ns-imports ns))))))))
Comments top
No comments for potential-dot. Log in to add a comment.