streamly
streamly copied to clipboard
High performance, concurrent functional programming abstractions
The information is currently obsolete. Update it with the usage of `test-runner` instead of `test.sh`
See https://github.com/composewell/streamly/pull/1176
PR : https://github.com/composewell/streamly/pull/1038
For the 0.9.0 release. Make a list of those that do not have tests.
We can run something like this on all .hs files: ``` awk '{if (length($0) > 79) {print "Line length exceeds 79: " length($0); print $0; exit 1;}}' ``` We can...
For my shell, I had to replace `packcheck.sh` with `./packcheck.sh` in `run-ci.sh` to work. We can download it to a temporary location and get the absolute path.
Implement "split" operation: ``` split :: Monad m => Fold m x a -> Fold m x b -> Fold m x (a, b) ```