package incr_select

  1. Overview
  2. Docs
Handling of large set of incremental outputs from a single input

Install

dune-project
 Dependency

Authors

Maintainers

Sources

incr_select-v0.12.0.tar.gz
sha256=52848ff15a1636c24b3ad79be99a4324c48341a928bc38cd3bbbd4a1a65c1134
md5=d00eb011ede05fdbf39d23243078531b

doc/incr_select/Incr_select/Make/argument-1-Incr/Let_syntax/index.html

Module Incr.Let_syntax

This Let_syntax allows you to write expressions like

  let open Incr.Let_syntax in
  let%map_open some_incr = watch some_variable
  and another_incr = ...
  and ...
  in
  ...expression involving some_incr, another_incr, etc...

Note that this is less efficient than using map3, map4, etc., as the latter produces fewer intermediate nodes.

val return : 'a -> 'a t
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
module Let_syntax : sig ... end