(defn get-possibly-unbound-var "Like var-get but returns nil if the var is unbound." {:added "1.1"} [v] (try (var-get v) (catch IllegalStateException e nil)))
Comments top
No comments for get-possibly-unbound-var. Log in to add a comment.