(defn safe-get "Like get, but throws an exception if the key is not found." [map key] (lazy-get map key (throw (IllegalArgumentException. (format "Key %s not found in %s" key map)))))
Comments top
No comments for safe-get. Log in to add a comment.