package merlin-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ('a, 'b) t
type log
val force : ('a -> 'b) -> ('a, 'b) t -> 'b
val create : 'a -> ('a, 'b) t
val get_arg : ('a, 'b) t -> 'a option
val get_contents : ('a, 'b) t -> ('a, 'b) Either.t
val create_forced : 'b -> ('a, 'b) t
val create_failed : exn -> ('a, 'b) t
val log : unit -> log
val force_logged : log -> ('a -> ('b, 'c) result) -> ('a, ('b, 'c) result) t -> ('b, 'c) result
val backtrack : log -> unit
val is_val : ('a, 'b) t -> bool
type ('a, 'b) eval =
  1. | Done of 'b
  2. | Raise of exn
  3. | Thunk of 'a
val view : ('a, 'b) t -> ('a, 'b) eval
val force_logged_408 : log -> ('a -> 'b option) -> ('a, 'b option) t -> 'b option