Does arrow have anything to handle a finally block...
# arrow
b
Does arrow have anything to handle a finally block? Something like
Try.invoke{canThrow()}.finally{cleanup()}
i
Generally, Try is not recommended to do any sort of IO operations in a functional way.
r
Bracket