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
mutable-containers currently seems to only support deques and queues. Adding
class MutableCollection c => MutableInitialSizedCollection c where type CollIndex c :: Type newCollOfSize :: (PrimMonad m, PrimState m ~ MCState c) => CollIndex c -> m c class MutableInitialSizedCollection c => MutableIndexing c where readIndex :: (PrimMonad m, PrimState m ~ MCState c) => c -> CollIndex c -> m (CollElement c) writeIndex :: (PrimMonad m, PrimState m ~ MCState c) => c -> CollIndex c -> CollElement c -> m ()
would allow mutable indexing.
The text was updated successfully, but these errors were encountered:
BebeSparkelSparkel
Successfully merging a pull request may close this issue.
mutable-containers currently seems to only support deques and queues. Adding
would allow mutable indexing.
The text was updated successfully, but these errors were encountered: