Harendra Kumar
Harendra Kumar
Sometimes we do not add tests due to lack of time and sometimes we do not add tests because an API gets tested through some other API. However, it is...
`zipWith` and `zipWithM` currently work serially. They should instead work according to the stream type. For example, if the stream type is `Async` then they can zip multiple pairs concurrently...
Unterminated interpolation is not detected and reported: ``` [str|sudo #{nixDefaultProfile/bin/usermod -p '*' #{loginId}|] ``` The above leads to a run time error: ``` sudo: #{nixDefaultProfile/bin/usermod: command not found ``` Instead...
Basically, rewrite `fuse append` to `append2` (the StreamD version of append) and so on.
We can move the lifted operations in the streamly package.
This could make life simple in some cases, but also has some complications e.g. what to do with the backtracking count in initial, almost always it does not make sense,...
See #156 as well for the problem to be solved. We use multiple stream types for different styles of serial and concurrent merging of streams. We use type adapting combinators...
We can have per project `.packcheck.ignore` files and each project can ignore the other project directories. The .packcheck.ignore file can reside in the same directory as the .cabal file.