(defmacro lazy-get "Like get, but doesn't evaluate not-found unless it is needed." [map key not-found] `(if-let [pair# (find ~map ~key)] (val pair#) ~not-found))
Comments top
No comments for lazy-get. Log in to add a comment.