lambda_streams
Lambda-based streaming library
README
A lambda-based streaming library. Read the introduction here.
Installation
For native ocaml:
opam install lambda-streams
For bucklescript:
yarn add lambda-streams
Documentation
See documentation
Examples
There are several kinds of streams. The simplest is a Finite.Sync
stream:
# #require "lambda_streams";;
# open Lambda_streams;;
# let foo = Finite.Sync.from_list [1; 2; 3];;
val foo : int Finite.Sync.input = <fun>
# let bar = foo |> Finite.Sync.map (( * ) 2) |> Finite.Sync.to_list;;
val bar : int list = [2; 4; 6]
License
See LICENSE
Install
- Published
-
17 Mar 2020
- Authors
-
- Maintainers
-
Sources
0.1.2.tar.gz
md5=8c1ce04ee769b56434696bd57aee1a5b
sha512=9bb794f3852da60e536277f41ca5c6db678e5f0f5100ca13bf4c054a8d5c17834891c9ba2d73ddd35dc4f52f4b8be6076611b8f8c413eb6e93d61c161c67f9aa
Dependencies
dune
>= "2.2.0"
odoc
>= "1.5.0" & with-doc
mdx
>= "1.6.0" & with-test
fmt
>= "0.8.8" & with-test
alcotest
>= "1.0.1" & with-test
ocaml
>= "4.06.1"
Reverse Dependencies