We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently it has this type:
runCancelT :: ParMonad p => CancelT p e s a -> p e s a
From the type it seems like CancelT computation should always return an a, but that's not the case, for example:
CancelT
a
runCancelT (cancelMe >> return a)
This shouldn't return anything. (I haven't tested it yet, so I don't know what's happening when this expression run using current version)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently it has this type:
From the type it seems like
CancelT
computation should always return ana
, but that's not the case, for example:This shouldn't return anything. (I haven't tested it yet, so I don't know what's happening when this expression run using current version)
The text was updated successfully, but these errors were encountered: