Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pveber/pipes

Stream programming in the style of Haskell's {pipe, conduit, iteratee}
https://github.com/pveber/pipes

ocaml stream-programming

Last synced: 8 days ago
JSON representation

Stream programming in the style of Haskell's {pipe, conduit, iteratee}

Awesome Lists containing this project

README

        

# pipes
Stream programming in the style of Haskell's {pipe, conduit, iteratee}

* Examples
```
# open Pipes_pure.Pipe;;
# run (from_list [ 1 ; 2 ; 3 ] $$ fold 0 ( + ));;
- : int Pipes_pure.Pipe.monad = 6
```