Popularity
3.1
Declining
Activity
0.0
Stable
2
4
0

Monthly Downloads: 16
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Development     Error Handling    
Latest version: v0.1.0.4

async-io-either alternatives and similar packages

Based on the "Error Handling" category.
Alternatively, view async-io-either alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of async-io-either or a related project?

Add another 'Error Handling' Package

README

Async IO Either

This is a tiny package that captures a pattern I've been using a lot...

Essentially I am tired of needing something of (IO a) and it so often coming with exceptions that are not indicated in the type. Generally speaking my application, like many others, is just going to throw in the towel when an exception occurs, but I would prefer it if a value was provided. This would then allow me to decide just what sort of tantrum my application will throw.

I've tried to understand the different manners of handling exceptions in Haskell, and I'm sure there is a better or more fitting approach. But this is what I have for now.