streamly icon indicating copy to clipboard operation
streamly copied to clipboard

High performance, concurrent functional programming abstractions

Results 258 streamly issues
Sort by recently updated
recently updated
newest added

In many cases we can just import the exposed modules. Symbols from Internal modules should preferably be imported explicitly so that we know what is being imported.

- [ ] Expose deriveUnbox and deriveUnboxWith via the Internal.Data.Unbox module as well. - [ ] Combine Unbox and Serialize exposed modules. - [ ] Have more elaborate round tripping...

- Bigger than 4k - When we use non-moving GC and is moved to non-moving memory

ParserK uses negative value for backtracking and positive for forward tracking. ParserD uses positive value for backtracking. We should use the same convention in both to not confuse users writing...

api:breaking

Is there an updated roadmap for Streamly? We're using it heavily on a project and needed to reach `Internal` modules. It would be nice to know that there is a...

As per the defines build fails. Should there be anther package (streamly-io?) that provides IO related capability so that streamly-core can be used without a dependency on OS? ``` Building...

1. `cabal unpack streamly-0.10.1` 2. `cd streamly-0.10.1` 3. `cabal build -w ghc-9.6.5 --constraint='transformers == 0.5.6.2'` ``` [36 of 72] Compiling Streamly.Internal.Data.Stream.Serial ( src/Streamly/Internal/Data/Stream/Serial.hs, dist-newstyle/build/x86_64-linux/ghc-9.6.5/streamly-0.10.1/build/Streamly/Internal/Data/Stream/Serial.o, dist-newstyle/build/x86_64-linux/ghc-9.6.5/streamly-0.10.1/build/Streamly/Internal/Data/Stream/Serial.dyn_o ) [Control.Monad.Base changed] src/Streamly/Internal/Data/Stream/Serial.hs:56:1: error:...

I hope I'm using the term _contravariant_ here correctly. Basically I want to flatten the inputs of a fold. I.e., I need a function with the following type: ```haskell contraFlatten...