Skip to content
New issue

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

Check that newly introduced and internally used array APIs are using IO callbacks #2820

Open
harendra-kumar opened this issue Aug 2, 2024 · 0 comments
Labels
aspect:api Related to api change
Milestone

Comments

@harendra-kumar
Copy link
Member

For example:

unsafePinnedCreateUsingPtr
    :: MonadIO m => Int -> (Ptr Word8 -> m Int) -> m (MutArray Word8)

can become:

unsafePinnedCreateUsingPtr
    :: MonadIO m => Int -> (Ptr Word8 -> IO Int) -> m (MutArray Word8)

See #2589 .

@harendra-kumar harendra-kumar added the aspect:api Related to api change label Aug 2, 2024
@harendra-kumar harendra-kumar added this to the 0.11.0 milestone Aug 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
aspect:api Related to api change
Projects
None yet
Development

No branches or pull requests

1 participant