module Load_path:sig..end
Management of include directories.
This module offers a high level interface to locating files in the load
    path, which is constructed from -I and -H 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.
val add_dir : hidden:bool -> string -> unitAdd a directory to the end of the load path (i.e. at lowest priority.)
val remove_dir : string -> unitRemove a directory from the load path
val reset : unit -> unitRemove all directories
module Dir:sig..end
typeauto_include_callback =(Dir.t -> string -> string option) -> string -> string
The type of callback functions on for init ~auto_include
val no_auto_include : auto_include_callbackNo automatic directory inclusion: misses in the load path raise Not_found
    as normal.
val init : auto_include:auto_include_callback ->
       visible:string list -> hidden:string list -> unitinit ~visible ~hidden is the same as
    reset ();
     List.iter add_dir (List.rev hidden);
     List.iter add_dir (List.rev visible)
val auto_include_otherlibs : (string -> unit) -> auto_include_callbackauto_include_otherlibs alert is a callback function to be passed to
    Load_path.init and automatically adds -I +lib to the load path after
    calling alert lib.
val get_path_list : unit -> string listReturn the list of directories passed to add_dir so far.
type |    | visible :  | 
|    |  :  | 
}
val get_paths : unit -> pathsReturn the directories passed to add_dir so far.
val find : string -> stringLocate 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.
val find_normalized : string -> stringSame as find, but search also for normalized unit name (see
    Misc.normalized_unit_filename), i.e. if name is Foo.ml, allow
    /path/Foo.ml and /path/foo.ml to match.
type | | | Visible | 
| | | Hidden | 
val find_normalized_with_visibility : string -> string * visibilitySame as find_normalized, but also reports whether the cmi was found in a
    -I directory (Visible) or a -H directory (Hidden)
val add : Dir.t -> unitOld name for Load_path.append_dir
val append_dir : Dir.t -> unitappend_dir d adds d to the end of the load path (i.e. at lowest
    priority.
val prepend_dir : Dir.t -> unitprepend_dir d adds d to the start of the load path (i.e. at highest
    priority.
val get_visible : unit -> Dir.t listSame as get_paths (), except that it returns a Dir.t list, and doesn't
    include the -H paths.