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