lsp.stdune
Monoid.Appendable_list
The list monoid with empty = [] and combine = ( @ ).
empty = []
combine = ( @ )
lsp
lsp.fiber
lsp.fiber_unix
lsp.filesystem_stubs
module M : sig ... end
type t = M.t Appendable_list.t
val empty : t
Must be the identity of combine:
combine
val combine : t -> t -> t
Must be associative:
module O : sig ... end
val reduce : t list -> t
val map_reduce : f:('a -> t) -> 'a list -> t