Try is unable to suspend effects and there is no w...
# arrow
r
Try is unable to suspend effects and there is no way to construct a Try value that does not run the side effects that it attempts to control. It's therefore a bad data type for side effecting computations. IO and others are better superior alternatives that do the same error control but can actually suspend and control side effects with the same API as
Try
.
arrow 4