package odoc
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
OCaml documentation generator
Install
dune-project
Dependency
Authors
Maintainers
Sources
odoc-2.1.1.tbz
sha256=f574dbd28cd0fc3a2b95525c4bb95ddf6d1f6408bb4fe12157fa537884f987fd
sha512=1c545c281a7022a167f028fff8cec6fb3f2f82da0881431be74e7a4281c5353ed83bfbdb4d9d9e08af6755dbe3505c052c5e5b58cdeb08c57aed5e89c0f15e91
doc/src/odoc.xref2/cpath.ml.html
Source file cpath.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380open Odoc_model.Paths open Odoc_model.Names module rec Resolved : sig type parent = [ `Module of module_ | `ModuleType of module_type | `FragmentRoot ] and module_ = [ `Local of Ident.path_module | `Identifier of Identifier.Path.Module.t | `Substituted of module_ | `Subst of module_type * module_ | `Hidden of module_ | `Module of parent * ModuleName.t | `Canonical of module_ * Cpath.module_ | `Apply of module_ * module_ | `Alias of module_ * module_ | `OpaqueModule of module_ ] and module_type = [ `Local of Ident.module_type | `Substituted of module_type | `Identifier of Identifier.ModuleType.t | `ModuleType of parent * ModuleTypeName.t | `SubstT of module_type * module_type | `AliasModuleType of module_type * module_type | `CanonicalModuleType of module_type * Cpath.module_type | `OpaqueModuleType of module_type ] and type_ = [ `Local of Ident.path_type | `Identifier of Odoc_model.Paths.Identifier.Path.Type.t | `Substituted of type_ | `CanonicalType of type_ * Cpath.type_ | `Type of parent * TypeName.t | `Class of parent * ClassName.t | `ClassType of parent * ClassTypeName.t ] and class_type = [ `Local of Ident.path_class_type | `Substituted of class_type | `Identifier of Odoc_model.Paths.Identifier.Path.ClassType.t | `Class of parent * ClassName.t | `ClassType of parent * ClassTypeName.t ] end = Resolved and Cpath : sig type module_ = [ `Resolved of Resolved.module_ | `Substituted of module_ | `Local of Ident.path_module * bool | `Identifier of Identifier.Path.Module.t * bool | `Root of string | `Forward of string | `Dot of module_ * string | `Module of Resolved.parent * ModuleName.t (* Like dot, but typed *) | `Apply of module_ * module_ ] and module_type = [ `Resolved of Resolved.module_type | `Substituted of module_type | `Local of Ident.module_type * bool | `Identifier of Identifier.ModuleType.t * bool | `Dot of module_ * string | `ModuleType of Resolved.parent * 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 * TypeName.t | `Class of Resolved.parent * ClassName.t | `ClassType of Resolved.parent * 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 * ClassName.t | `ClassType of Resolved.parent * ClassTypeName.t ] end = Cpath include Cpath let rec is_resolved_module_substituted : Resolved.module_ -> bool = function | `Local _ -> false | `Substituted _ -> true | `Identifier _ -> false | `Subst (_a, _) -> false (* is_resolved_module_type_substituted a*) | `Hidden a | `Canonical (a, _) | `Apply (a, _) | `Alias (a, _) -> is_resolved_module_substituted a | `Module (a, _) -> is_resolved_parent_substituted a | `OpaqueModule a -> is_resolved_module_substituted a and is_resolved_parent_substituted = function | `Module m -> is_resolved_module_substituted m | `ModuleType m -> is_resolved_module_type_substituted m | `FragmentRoot -> false and is_resolved_module_type_substituted : Resolved.module_type -> bool = function | `Local _ -> false | `Substituted _ -> true | `Identifier _ -> false | `ModuleType (a, _) -> is_resolved_parent_substituted a | `SubstT _ -> false | `AliasModuleType (m1, _) -> is_resolved_module_type_substituted m1 | `CanonicalModuleType (m, _) | `OpaqueModuleType m -> is_resolved_module_type_substituted m and is_resolved_type_substituted : Resolved.type_ -> bool = function | `Local _ -> false | `Substituted _ -> true | `Identifier _ -> false | `CanonicalType (t, _) -> is_resolved_type_substituted t | `Type (a, _) | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a and is_resolved_class_type_substituted : Resolved.class_type -> bool = function | `Local _ -> false | `Substituted _ -> true | `Identifier _ -> false | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a let rec is_module_substituted : module_ -> bool = function | `Resolved a -> is_resolved_module_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `Dot (a, _) | `Apply (a, _) -> is_module_substituted a | `Forward _ -> false | `Root _ -> false | `Module (a, _) -> is_resolved_parent_substituted a let is_module_type_substituted : module_type -> bool = function | `Resolved a -> is_resolved_module_type_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `Dot (a, _) -> is_module_substituted a | `ModuleType (a, _) -> is_resolved_parent_substituted a let is_type_substituted : type_ -> bool = function | `Resolved a -> is_resolved_type_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `Dot (a, _) -> is_module_substituted a | `Type (a, _) | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a let is_class_type_substituted : class_type -> bool = function | `Resolved a -> is_resolved_class_type_substituted a | `Identifier _ -> false | `Local _ -> false | `Substituted _ -> true | `Dot (a, _) -> is_module_substituted a | `Class (a, _) | `ClassType (a, _) -> is_resolved_parent_substituted a let rec is_module_forward : module_ -> bool = function | `Forward _ -> true | `Resolved _ -> false | `Root _ -> false | `Identifier _ -> false | `Local _ -> false | `Substituted p | `Dot (p, _) | `Apply (p, _) -> is_module_forward p | `Module (_, _) -> false let rec : module_ -> bool = function | `Resolved r -> is_resolved_module_hidden ~weak_canonical_test:false r | `Substituted p | `Dot (p, _) | `Apply (p, _) -> is_module_hidden p | `Identifier (_, b) -> b | `Local (_, b) -> b | `Forward _ -> false | `Root _ -> false | `Module (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : weak_canonical_test:bool -> Resolved.module_ -> bool = fun ~weak_canonical_test -> let rec inner = function | `Local _ -> false | `Identifier (`Module (_, t)) when ModuleName.is_internal t -> true | `Identifier (`Module _) -> false | `Identifier _ -> false | `Hidden _ -> true | `Canonical (_, `Resolved _) -> false | `Canonical (p, _) -> weak_canonical_test || inner p | `Substituted p | `Apply (p, _) -> inner p | `Module (p, _) -> is_resolved_parent_hidden ~weak_canonical_test p | `Subst (p1, p2) -> is_resolved_module_type_hidden p1 || inner p2 | `Alias (p1, p2) -> inner p1 || inner p2 | `OpaqueModule m -> inner m in inner and : weak_canonical_test:bool -> Resolved.parent -> bool = fun ~weak_canonical_test -> function | `Module m -> is_resolved_module_hidden ~weak_canonical_test m | `ModuleType m -> is_resolved_module_type_hidden m | `FragmentRoot -> false and : module_type -> bool = function | `Resolved r -> is_resolved_module_type_hidden r | `Identifier (id, b) -> b || is_resolved_module_type_hidden (`Identifier id) | `Local (_, b) -> b | `Substituted p -> is_module_type_hidden p | `Dot (p, _) -> is_module_hidden p | `ModuleType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : Resolved.module_type -> bool = function | `Local _ -> false | `Identifier (`ModuleType (_, t)) when ModuleTypeName.is_internal t -> true | `Identifier (`ModuleType _) -> false | `Substituted p -> is_resolved_module_type_hidden p | `ModuleType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p | `SubstT (p1, p2) -> is_resolved_module_type_hidden p1 || is_resolved_module_type_hidden p2 | `AliasModuleType (p1, p2) -> is_resolved_module_type_hidden p1 || is_resolved_module_type_hidden p2 | `CanonicalModuleType (_, `Resolved _) -> false | `CanonicalModuleType (p, _) -> is_resolved_module_type_hidden p | `OpaqueModuleType m -> is_resolved_module_type_substituted m and : type_ -> bool = function | `Resolved r -> is_resolved_type_hidden r | `Identifier (id, b) -> b || is_resolved_type_hidden (`Identifier (id :> Identifier.Path.Type.t)) | `Local (_, b) -> b | `Substituted p -> is_type_hidden p | `Dot (p, _) -> is_module_hidden p | `Type (p, _) | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : Resolved.type_ -> bool = function | `Local _ -> false | `Identifier (`Type (_, t)) when TypeName.is_internal t -> true | `Identifier (`ClassType (_, t)) when ClassTypeName.is_internal t -> true | `Identifier (`Class (_, t)) when ClassName.is_internal t -> true | `Identifier (`Type (_, _)) -> false | `Identifier (`ClassType (_, _)) -> false | `Identifier (`Class (_, _)) -> false | `Identifier (`CoreType _) -> false | `Substituted p -> is_resolved_type_hidden p | `CanonicalType (_, `Resolved _) -> false | `CanonicalType (p, _) -> is_resolved_type_hidden p | `Type (p, _) | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : Resolved.class_type -> bool = function | `Local _ -> false | `Identifier (`ClassType (_, t)) when ClassTypeName.is_internal t -> true | `Identifier (`Class (_, t)) when ClassName.is_internal t -> true | `Identifier (`ClassType _) -> false | `Identifier (`Class (_, _)) -> false | `Substituted p -> is_resolved_class_type_hidden p | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p and : class_type -> bool = function | `Resolved r -> is_resolved_class_type_hidden r | `Identifier (_, b) -> b | `Local (_, b) -> b | `Substituted p -> is_class_type_hidden p | `Dot (p, _) -> is_module_hidden p | `Class (p, _) | `ClassType (p, _) -> is_resolved_parent_hidden ~weak_canonical_test:false p let rec resolved_module_of_resolved_module_reference : Reference.Resolved.Module.t -> Resolved.module_ = function | `Module (parent, name) -> `Module (`Module (resolved_module_of_resolved_signature_reference parent), name) | `Identifier i -> `Identifier i | `Alias (_m1, _m2) -> failwith "gah" | `Hidden s -> `Hidden (resolved_module_of_resolved_module_reference s) | `Canonical (m1, m2) -> `Canonical ( resolved_module_of_resolved_module_reference m1, module_of_module_reference m2 ) and resolved_module_of_resolved_signature_reference : Reference.Resolved.Signature.t -> Resolved.module_ = function | `Identifier (#Identifier.Module.t as i) -> `Identifier i | (`Alias _ | `Canonical _ | `Module _ | `Hidden _) as r' -> resolved_module_of_resolved_module_reference r' | `ModuleType (_, n) -> failwith ("Not a module reference: " ^ ModuleTypeName.to_string n) | `AliasModuleType _ -> failwith "Not a module reference: aliasmoduletype" | `Identifier _ -> failwith "Not a module reference : identifier" and module_of_module_reference : Reference.Module.t -> module_ = function | `Resolved r -> `Resolved (resolved_module_of_resolved_module_reference r) | `Root (_, _) -> failwith "unhandled" | `Dot ( (( `Resolved (`Identifier #Identifier.Module.t) | `Dot (_, _) | `Module (_, _) ) as parent), name ) -> `Dot (module_of_module_reference parent, name) | `Module ( (( `Resolved (`Identifier #Identifier.Module.t) | `Dot (_, _) | `Module (_, _) ) as parent), name ) -> `Dot (module_of_module_reference parent, ModuleName.to_string name) | _ -> failwith "Not a module reference" let rec unresolve_resolved_module_path : Resolved.module_ -> module_ = function | `Hidden (`Identifier x) -> `Identifier (x, true) | `Identifier x -> `Identifier (x, false) | `Hidden (`Local x) -> `Local (x, true) | `Local x -> `Local (x, false) | `Substituted x -> unresolve_resolved_module_path x | `Subst (_, x) -> unresolve_resolved_module_path x | `Hidden x -> unresolve_resolved_module_path x (* should assert false here *) | `Module (p, m) -> `Dot (unresolve_resolved_parent_path p, ModuleName.to_string m) | `Canonical (m, _) -> unresolve_resolved_module_path m | `Apply (m, a) -> `Apply (unresolve_resolved_module_path m, unresolve_resolved_module_path a) | `Alias (_, m) -> unresolve_resolved_module_path m | `OpaqueModule m -> unresolve_resolved_module_path m and unresolve_resolved_module_type_path : Resolved.module_type -> module_type = function | (`Local _ | `Identifier _) as p -> `Resolved p | `Substituted x -> unresolve_resolved_module_type_path x | `ModuleType (p, n) -> `Dot (unresolve_resolved_parent_path p, ModuleTypeName.to_string n) | `SubstT (_, m) -> unresolve_resolved_module_type_path m | `AliasModuleType (_, m2) -> unresolve_resolved_module_type_path m2 | `CanonicalModuleType (p, _) -> unresolve_resolved_module_type_path p | `OpaqueModuleType m -> unresolve_resolved_module_type_path m and unresolve_resolved_parent_path : Resolved.parent -> module_ = function | `Module m -> unresolve_resolved_module_path m | `FragmentRoot | `ModuleType _ -> assert false and unresolve_resolved_type_path : Resolved.type_ -> type_ = function | (`Identifier _ | `Local _) as p -> `Resolved p | `Substituted x -> unresolve_resolved_type_path x | `CanonicalType (t1, _) -> unresolve_resolved_type_path t1 | `Type (p, n) -> `Dot (unresolve_resolved_parent_path p, TypeName.to_string n) | `Class (p, n) -> `Dot (unresolve_resolved_parent_path p, ClassName.to_string n) | `ClassType (p, n) -> `Dot (unresolve_resolved_parent_path p, ClassTypeName.to_string n) and unresolve_resolved_class_type_path : Resolved.class_type -> class_type = function | (`Local _ | `Identifier _) as p -> `Resolved p | `Substituted x -> unresolve_resolved_class_type_path x | `Class (p, n) -> `Dot (unresolve_resolved_parent_path p, ClassName.to_string n) | `ClassType (p, n) -> `Dot (unresolve_resolved_parent_path p, ClassTypeName.to_string n) and unresolve_module_path : module_ -> module_ = function | `Resolved m -> unresolve_resolved_module_path m | y -> y and unresolve_module_type_path : module_type -> module_type = function | `Resolved m -> unresolve_resolved_module_type_path m | y -> y and unresolve_type_path : type_ -> type_ = function | `Resolved m -> unresolve_resolved_type_path m | y -> y and unresolve_class_type_path : class_type -> class_type = function | `Resolved m -> unresolve_resolved_class_type_path m | y -> y
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>