You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add the following to the either namespace, I use it all the time:
(defmacrotry-either"try to evalute the body and return the result as a right, if an exception is throw return the exception as a left"
[& body]
`(try (right ~@body)
(catch Exception e# (left e#))))
The text was updated successfully, but these errors were encountered:
Would it be possible to add the following to the either namespace, I use it all the time:
The text was updated successfully, but these errors were encountered: