Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bodigrim/data-array-byte
Compatibility layer for Data.Array.Byte from base
https://github.com/bodigrim/data-array-byte
bytearray haskell
Last synced: about 1 month ago
JSON representation
Compatibility layer for Data.Array.Byte from base
- Host: GitHub
- URL: https://github.com/bodigrim/data-array-byte
- Owner: Bodigrim
- License: other
- Created: 2022-10-02T13:31:37.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T23:56:04.000Z (9 months ago)
- Last Synced: 2024-03-15T00:47:00.555Z (9 months ago)
- Topics: bytearray, haskell
- Language: Haskell
- Homepage: https://hackage.haskell.org/package/data-array-byte
- Size: 14.6 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# data-array-byte
Compatibility layer for [`Data.Array.Byte`](https://hackage.haskell.org/package/base/docs/Data-Array-Byte.html), providing boxed wrappers for [`ByteArray#`](https://hackage.haskell.org/package/base/docs/GHC-Exts.html#t:ByteArray-35-) and [`MutableByteArray#`](https://hackage.haskell.org/package/base/docs/GHC-Exts.html#t:MutableByteArray-35-) and relevant instances for GHC < 9.4. Include it into your Cabal file:
```cabal
build-depends: base
if impl(ghc < 9.4)
build-depends: data-array-byte
```and then `import Data.Array.Byte` unconditionally.