streamly icon indicating copy to clipboard operation
streamly copied to clipboard

High performance, concurrent functional programming abstractions

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

By @harendra-kumar, This is a tricky case, we have the following options: 1. Done 0 with extract as you have written 2. Done n, will require buffering elements 3. Use...

aspect:folds
aspect:parsers

Type information is already available when we are using readdir or stat. The level information can be generated by the concatIterate function?

type:enhancement
aspect:filesystem
aspect:api

Running the `maxrate` test results in a crash at yield rates of 10000 or above. ``` uncaught exception in Haskell thread: TypeError: Cannot read property 'd1' of undefined TypeError: Cannot...

type:bug
aspect:ghcjs
aspect:streams

When we execute this: ``` > stream1 = Stream.sequence $ Stream.fromList [delay 2, delay 2, delay 2] > stream2 = Stream.sequence $ Stream.replicate 5 (delay 1) > Stream.fold Fold.toList $...

``` {-# INLINE chainl1 #-} chainl1 :: ParserK b IO a -> ParserK b IO (a -> a -> a) -> ParserK b IO a chainl1 p op = p...

``` if flag(dev) exposed-modules: Streamly.Internal.Data.Stream.StreamK.Alt , Streamly.Internal.Data.Stream.Type , Streamly.Internal.Data.Stream.Eliminate , Streamly.Internal.Data.Stream.Enumerate , Streamly.Internal.Data.Stream.Generate , Streamly.Internal.Data.Stream.Transform , Streamly.Internal.Data.Stream.Bottom , Streamly.Internal.Data.Stream.Exception , Streamly.Internal.Data.Stream.Expand , Streamly.Internal.Data.Stream.Lift , Streamly.Internal.Data.Stream.Reduce , Streamly.Internal.Data.Stream.Transformer , Streamly.Internal.Data.Stream.StreamDK ,...

type:maintenance

And deprecate them in the "streamly" package. This will also remove the dependency on unicode-data package.

aspect:api

See the Posix/ReadDir module for posix implementations. Need to do the same for Windows. We have generic readEitherChunks in DirIO module for Windows use. The specific implementation may be faster,...

aspect:filesystem