(defmacro m-when "If test is logical true, return monadic value m-expr, else return (m-result nil)." [test m-expr] `(if ~test ~m-expr (~'m-result nil)))
Comments top
No comments for m-when. Log in to add a comment.