Module names
The type for library names looked up in OCAMLPATH.
This is either:
- The name of an OCaml library that follows the OCaml library convention. For example the 
b0.stdnames looks upb0/std/lib.cm{a,xa,xs}. These libraries are assumed to have been compiled according to the library convention and have their library dependencies embedded in their objects. - For legacy reasons, the name of an OCaml library followed by a slash to indicate the name of an archive. That is for example 
b0.std/b0_std, which looks upb0/std/b0_std.cm{a,xa,xs}. These libraries do not have their library dependencies specified, their dependencies are looked by a best-effort data-driven resolution procedure. 
val v : string -> tv s is a library for n. Raises Invalid_argument if s is not a valid library name.
val of_string : string -> (t, string) Stdlib.resultof_string s is a library name from n.
val to_string : ?no_legacy:bool -> t -> stringto_string n is n as a string. If no_legacy is true does not show the legacy part of the lib.
val is_legacy : t -> boollegacy n is true if n is a legacy name.
val pp : t B00_std.Fmt.tpp formats a library name.
module Set : Stdlib.Set.S with type elt = tLibrary name sets.
module Map : Stdlib.Map.S with type key = tLibrary name maps.