package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t
val create : (unit -> 'a option Fiber.t) -> 'a t
val empty : unit -> 'a t
val of_list : 'a list -> 'a t
val read : 'a t -> 'a option Fiber.t
val map : 'a t -> f:('a -> 'b) -> 'b t
val filter : 'a t -> f:('a -> bool) -> 'a t
val filter_map : 'a t -> f:('a -> 'b option) -> 'b t
val sequential_iter : 'a t -> f:('a -> unit Fiber.t) -> unit Fiber.t