Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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}
- Host: GitHub
- URL: https://github.com/pveber/pipes
- Owner: pveber
- Created: 2016-08-19T18:39:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T13:57:51.000Z (almost 5 years ago)
- Last Synced: 2024-11-09T00:12:24.462Z (2 months ago)
- Topics: ocaml, stream-programming
- Language: OCaml
- Size: 33.2 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```