package merlin-lib

  1. Overview
  2. Docs
Merlin's libraries

Install

dune-project
 Dependency

Authors

Maintainers

Sources

merlin-5.6-503.tbz
sha256=b0dcad092aaaf7a23f65ab9a089e8761bd665cc72357909e0ac6c2182f4fc2d4
sha512=9987baf2b2e82bab4c90a328bfcba9945e797e0f3d947156f04435ee84b49542844b379e35a79027c3ffe81f4b7a8f1c60803233999b4c039d4598033371880d

doc/merlin-lib.utils/Merlin_utils/Std/index.html

Module Merlin_utils.StdSource

Sourcetype json = [
  1. | `Assoc of (string * json) list
  2. | `Bool of bool
  3. | `Float of float
  4. | `Int of int
  5. | `List of json list
  6. | `Null
  7. | `String of string
]
Sourcemodule Json : sig ... end
Sourcemodule Hashtbl : sig ... end
Sourcemodule List : sig ... end
Sourcemodule Option : sig ... end
Sourcemodule Result : sig ... end
Sourcemodule String : sig ... end
Sourceval sprintf : ('a, unit, string) format -> 'a
Sourcemodule Format : sig ... end
Sourcemodule Lexing : sig ... end
Sourcemodule Char : sig ... end
Sourcemodule Glob : sig ... end
Sourceval fprintf : Format.formatter -> ('a, Format.formatter, unit) format -> 'a
Sourceval lazy_eq : 'a Lazy.t -> 'a Lazy.t -> bool
Sourceval let_ref : 'a ref -> 'a -> (unit -> 'b) -> 'b
Sourceval failwithf : ('a, unit, string, 'b) format4 -> 'a
Sourcemodule Shell : sig ... end
Sourcemodule System : sig ... end
Sourceval modules_in_path : ext:string -> string list -> string list
Sourceval file_contents : string -> string
Sourceval reraise : exn -> 'a
Sourcetype 'a with_workdir = {
  1. workdir : string;
  2. workval : 'a;
}

Some value that must be interpreted with respect to a specific work directory. (e.g. for resolving relative paths or executing sub-commands

Sourceval dump_with_workdir : ('a -> json) -> 'a with_workdir -> json