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
I'm thinking we might want an additional API for unlifted types that aren't viewed as unboxed versions of boxed types. This would have functions like
newMutVar :: forall m (a :: UnliftedType) PrimMonad m => a -> m (MutVar (PrimState m) a) readMutVar :: forall m (a :: UnliftedType) PrimMonad m => MutVar (PrimState m) a -> m (Box a) writeMutVar :: forall m (a :: UnliftedType) PrimMonad m => MutVar (PrimState m) a -> a -> m ()
The text was updated successfully, but these errors were encountered:
Oh, this is nice. I like the Box trick to make readMutVar work.
Box
readMutVar
Sorry, something went wrong.
What should the modules be called?
And how should the functions be named?
No branches or pull requests
I'm thinking we might want an additional API for unlifted types that aren't viewed as unboxed versions of boxed types. This would have functions like
The text was updated successfully, but these errors were encountered: