package merlin-lib

  1. Overview
  2. Docs
Merlin's libraries

Install

Dune Dependency

Authors

Maintainers

Sources

merlin-4.19-414.tbz
sha256=60a630f59203a9ce7047a5f04d0f239945960dac6f38102922e328b6d2657384
sha512=19f8ec152356873e29c05b971a529146bb7079929037c2b35a5c0afb0b3adf662341ee8527282c5fdd16de391d01c2c469fc8629af9e0ae443fa9f42472b70bb

doc/merlin-lib.ocaml_utils/Ocaml_utils/Load_path/index.html

Module Ocaml_utils.Load_pathSource

Management of include directories.

This module offers a high level interface to locating files in the load path, which is constructed from -I command line flags and a few other parameters.

It makes the assumption that the contents of include directories doesn't change during the execution of the compiler.

Sourceval add_dir : string -> unit

Add a directory to the end of the load path (i.e. at lowest priority.)

Sourceval remove_dir : string -> unit

Remove a directory from the load path

Sourceval reset : unit -> unit

Remove all directories

Sourceval init : string list -> unit

init l is the same as reset (); List.iter add_dir (List.rev l)

Sourceval get_paths : unit -> string list

Return the list of directories passed to add_dir so far.

Sourceval find : string -> string

Locate a file in the load path. Raise Not_found if the file cannot be found. This function is optimized for the case where the filename is a basename, i.e. doesn't contain a directory separator.

Sourceval find_uncap : string -> string

Same as find, but search also for uncapitalized name, i.e. if name is Foo.ml, allow /path/Foo.ml and /path/foo.ml to match.

Sourcemodule Dir : sig ... end
Sourceval add : Dir.t -> unit

Old name for append_dir

  • deprecated
Sourceval append_dir : Dir.t -> unit

append_dir d adds d to the end of the load path (i.e. at lowest priority.

Sourceval prepend_dir : Dir.t -> unit

prepend_dir d adds d to the start of the load path (i.e. at highest priority.

Sourceval get : unit -> Dir.t list

Same as get_paths (), except that it returns a Dir.t list.

OCaml

Innovation. Community. Security.