package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val (>>>) : unit t -> 'a t -> 'a t

>>> is a sequencing operator. a >>> b is the fiber that first executes a and then b.

val (>>=) : 'a t -> ('a -> 'b t) -> 'b t

>>= is similar to >>> except that the result of the first fiber is used to create the second one.

val (>>|) : 'a t -> ('a -> 'b) -> 'b t

t >>| f is the same as t >>= fun x -> return (f x) but slightly more efficient.

val let* : 'a t -> ('a -> 'b t) -> 'b t
val let+ : 'a t -> ('a -> 'b) -> 'b t