Odoc_xref2.Cpathmodule Resolved : sig ... endmodule Cpath : sig ... endinclude module type of struct include Cpath endtype module_ = [ | `Resolved of Resolved.module_ |
| `Substituted of module_ |
| `Local of Ident.path_module * bool |
| `Identifier of Odoc_model.Paths.Identifier.Path.Module.t * bool |
| `Root of string |
| `Forward of string |
| `Dot of module_ * string |
| `Module of Resolved.parent * Odoc_model.Names.ModuleName.t |
| `Apply of module_ * module_ |
]and module_type = [ | `Resolved of Resolved.module_type |
| `Substituted of module_type |
| `Local of Ident.module_type * bool |
| `Identifier of Odoc_model.Paths.Identifier.ModuleType.t * bool |
| `Dot of module_ * string |
| `ModuleType of Resolved.parent * Odoc_model.Names.ModuleTypeName.t |
]and type_ = [ | `Resolved of Resolved.type_ |
| `Substituted of type_ |
| `Local of Ident.path_type * bool |
| `Identifier of Odoc_model.Paths.Identifier.Path.Type.t * bool |
| `Dot of module_ * string |
| `Type of Resolved.parent * Odoc_model.Names.TypeName.t |
| `Class of Resolved.parent * Odoc_model.Names.ClassName.t |
| `ClassType of Resolved.parent * Odoc_model.Names.ClassTypeName.t |
]and class_type = [ | `Resolved of Resolved.class_type |
| `Substituted of class_type |
| `Local of Ident.path_class_type * bool |
| `Identifier of Odoc_model.Paths.Identifier.Path.ClassType.t * bool |
| `Dot of module_ * string |
| `Class of Resolved.parent * Odoc_model.Names.ClassName.t |
| `ClassType of Resolved.parent * Odoc_model.Names.ClassTypeName.t |
]exception LocalPath of local_path_errorval resolved_module_path_of_cpath : Resolved.module_ -> Odoc_model.Paths.Path.Resolved.Module.tval resolved_module_path_of_cpath_parent : Resolved.parent -> Odoc_model.Paths.Path.Resolved.Module.tval resolved_module_type_path_of_cpath : Resolved.module_type -> Odoc_model.Paths.Path.Resolved.ModuleType.tval resolved_type_path_of_cpath : Resolved.type_ -> Odoc_model.Paths.Path.Resolved.Type.tval resolved_class_type_path_of_cpath : Resolved.class_type -> Odoc_model.Paths.Path.Resolved.ClassType.tval module_path_of_cpath : module_ -> Odoc_model.Paths.Path.Module.tval module_type_path_of_cpath : module_type -> Odoc_model.Paths.Path.ModuleType.tval type_path_of_cpath : type_ -> Odoc_model.Paths.Path.Type.tval class_type_path_of_cpath : class_type -> Odoc_model.Paths.Path.ClassType.tval is_resolved_module_substituted : Resolved.module_ -> boolval is_resolved_parent_substituted : Resolved.parent -> boolval is_resolved_module_type_substituted : Resolved.module_type -> boolval is_resolved_type_substituted : Resolved.type_ -> boolval is_resolved_class_type_substituted : Resolved.class_type -> boolval is_module_substituted : module_ -> boolval is_module_type_substituted : module_type -> boolval is_type_substituted : type_ -> boolval is_class_type_substituted : class_type -> boolval is_module_forward : module_ -> boolval resolved_module_of_resolved_module_reference : Odoc_model.Paths.Reference.Resolved.Module.t -> Resolved.module_val resolved_module_of_resolved_signature_reference : Odoc_model.Paths.Reference.Resolved.Signature.t -> Resolved.module_val module_of_module_reference : Odoc_model.Paths.Reference.Module.t -> module_val unresolve_resolved_module_path : Resolved.module_ -> module_val unresolve_resolved_module_type_path : Resolved.module_type -> module_typeval unresolve_resolved_parent_path : Resolved.parent -> module_val unresolve_resolved_type_path : Resolved.type_ -> type_val unresolve_resolved_class_type_path : Resolved.class_type -> class_typeval unresolve_module_type_path : module_type -> module_typeval unresolve_class_type_path : class_type -> class_type