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.model_desc/paths_desc.ml.html
Source file paths_desc.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 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457open Type_desc open Odoc_model module Root = struct let t : Root.t t = To_string (fun _ -> "<root>") end module Names = struct include Names let modulename = To_string ModuleName.to_string let moduletypename = To_string ModuleTypeName.to_string let typename = To_string TypeName.to_string let classname = To_string ClassName.to_string let classtypename = To_string ClassTypeName.to_string let constructorname = To_string ConstructorName.to_string let fieldname = To_string FieldName.to_string let exceptionname = To_string ExceptionName.to_string let extensionname = To_string ExtensionName.to_string let valuename = To_string ValueName.to_string let methodname = To_string MethodName.to_string let instancevariablename = To_string InstanceVariableName.to_string let labelname = To_string LabelName.to_string let pagename = To_string PageName.to_string let parametername = To_string ParameterName.to_string end module General_paths = struct (** Simplified paths types that can be coerced to. *) type p = Paths.Path.t type rp = Paths.Path.Resolved.t type f = Paths.Fragment.t type rf = Paths.Fragment.Resolved.t type r = Paths.Reference.t type rr = Paths.Reference.Resolved.t type id_t = Paths.Identifier.t type tag = Paths.Reference.tag_any let rec identifier : Paths.Identifier.t t = Variant (function | `Page (parent, name) -> C ( "`Page", ((parent :> id_t option), name), Pair (Option identifier, Names.pagename) ) | `LeafPage (parent, name) -> C ( "`LeafPage", ((parent :> id_t option), name), Pair (Option identifier, Names.pagename) ) | `Root (parent, name) -> C ( "`Root", ((parent :> id_t option), name), Pair (Option identifier, Names.modulename) ) | `Module (parent, name) -> C ( "`Module", ((parent :> id_t), name), Pair (identifier, Names.modulename) ) | `Parameter (parent, name) -> C ( "`Parameter", ((parent :> id_t), name), Pair (identifier, Names.parametername) ) | `Result r -> C ("`Result", (r :> id_t), identifier) | `ModuleType (parent, name) -> C ( "`ModuleType", ((parent :> id_t), name), Pair (identifier, Names.moduletypename) ) | `Class (parent, name) -> C ( "`Class", ((parent :> id_t), name), Pair (identifier, Names.classname) ) | `ClassType (parent, name) -> C ( "`ClassType", ((parent :> id_t), name), Pair (identifier, Names.classtypename) ) | `Type (parent, name) -> C ( "`Type", ((parent :> id_t), name), Pair (identifier, Names.typename) ) | `CoreType name -> C ("`CoreType", name, Names.typename) | `Constructor (parent, name) -> C ( "`Constructor", ((parent :> id_t), name), Pair (identifier, Names.constructorname) ) | `Field (parent, name) -> C ( "`Field", ((parent :> id_t), name), Pair (identifier, Names.fieldname) ) | `Extension (parent, name) -> C ( "`Extension", ((parent :> id_t), name), Pair (identifier, Names.extensionname) ) | `Exception (parent, name) -> C ( "`Exception", ((parent :> id_t), name), Pair (identifier, Names.exceptionname) ) | `CoreException name -> C ("`CoreException", name, Names.exceptionname) | `Value (parent, name) -> C ( "`Value", ((parent :> id_t), name), Pair (identifier, Names.valuename) ) | `Method (parent, name) -> C ( "`Method", ((parent :> id_t), name), Pair (identifier, Names.methodname) ) | `InstanceVariable (parent, name) -> C ( "`InstanceVariable", ((parent :> id_t), name), Pair (identifier, Names.instancevariablename) ) | `Label (parent, name) -> C ( "`Label", ((parent :> id_t), name), Pair (identifier, Names.labelname) )) let reference_tag : tag t = Variant (function | `TClass -> C0 "`TClass" | `TClassType -> C0 "`TClassType" | `TConstructor -> C0 "`TConstructor" | `TException -> C0 "`TException" | `TExtension -> C0 "`TExtension" | `TField -> C0 "`TField" | `TInstanceVariable -> C0 "`TInstanceVariable" | `TLabel -> C0 "`TLabel" | `TMethod -> C0 "`TMethod" | `TModule -> C0 "`TModule" | `TModuleType -> C0 "`TModuleType" | `TPage -> C0 "`TPage" | `TType -> C0 "`TType" | `TUnknown -> C0 "`TUnknown" | `TValue -> C0 "`TValue" | `TChildPage -> C0 "`TChildPage" | `TChildModule -> C0 "`TChildModule") let rec path : p t = Variant (function | `Resolved x -> C ("`Resolved", x, resolved_path) | `Identifier (x1, x2) -> C ("`Identifier", ((x1 :> id_t), x2), Pair (identifier, bool)) | `Root x -> C ("`Root", x, string) | `Forward x -> C ("`Forward", x, string) | `Dot (x1, x2) -> C ("`Dot", ((x1 :> p), x2), Pair (path, string)) | `Apply (x1, x2) -> C ("`Apply", ((x1 :> p), (x2 :> p)), Pair (path, path))) and resolved_path : rp t = Variant (function | `Identifier x -> C ("`Identifier", x, identifier) | `Subst (x1, x2) -> C ( "`Subst", ((x1 :> rp), (x2 :> rp)), Pair (resolved_path, resolved_path) ) | `Hidden x -> C ("`Hidden", (x :> rp), resolved_path) | `Module (x1, x2) -> C ("`Module", ((x1 :> rp), x2), Pair (resolved_path, Names.modulename)) | `Canonical (x1, x2) -> C ("`Canonical", ((x1 :> rp), (x2 :> p)), Pair (resolved_path, path)) | `Apply (x1, x2) -> C ( "`Apply", ((x1 :> rp), (x2 :> rp)), Pair (resolved_path, resolved_path) ) | `Alias (x1, x2) -> C ( "`Alias", ((x1 :> rp), (x2 :> rp)), Pair (resolved_path, resolved_path) ) | `AliasModuleType (x1, x2) -> C ( "`AliasModuleType", ((x1 :> rp), (x2 :> rp)), Pair (resolved_path, resolved_path) ) | `OpaqueModule x -> C ("`OpaqueModule", (x :> rp), resolved_path) | `ModuleType (x1, x2) -> C ( "`ModuleType", ((x1 :> rp), x2), Pair (resolved_path, Names.moduletypename) ) | `SubstT (x1, x2) -> C ( "`SubstT", ((x1 :> rp), (x2 :> rp)), Pair (resolved_path, resolved_path) ) | `CanonicalModuleType (x1, x2) -> C ( "`CanonicalModuleType", ((x1 :> rp), (x2 :> p)), Pair (resolved_path, path) ) | `CanonicalType (x1, x2) -> C ( "`CanonicalType", ((x1 :> rp), (x2 :> p)), Pair (resolved_path, path) ) | `OpaqueModuleType x -> C ("`OpaqueModuleType", (x :> rp), resolved_path) | `Type (x1, x2) -> C ("`Type", ((x1 :> rp), x2), Pair (resolved_path, Names.typename)) | `Class (x1, x2) -> C ("`Class", ((x1 :> rp), x2), Pair (resolved_path, Names.classname)) | `ClassType (x1, x2) -> C ( "`ClassType", ((x1 :> rp), x2), Pair (resolved_path, Names.classtypename) )) and reference : r t = Variant (function | `Resolved x -> C ("`Resolved", x, resolved_reference) | `Root (x1, x2) -> C ("`Root", (x1, x2), Pair (string, reference_tag)) | `Dot (x1, x2) -> C ("`Dot", ((x1 :> r), x2), Pair (reference, string)) | `Module (x1, x2) -> C ("`Module", ((x1 :> r), x2), Pair (reference, Names.modulename)) | `ModuleType (x1, x2) -> C ( "`ModuleType", ((x1 :> r), x2), Pair (reference, Names.moduletypename) ) | `Type (x1, x2) -> C ("`Type", ((x1 :> r), x2), Pair (reference, Names.typename)) | `Constructor (x1, x2) -> C ( "`Constructor", ((x1 :> r), x2), Pair (reference, Names.constructorname) ) | `Field (x1, x2) -> C ("`Field", ((x1 :> r), x2), Pair (reference, Names.fieldname)) | `Extension (x1, x2) -> C ( "`Extension", ((x1 :> r), x2), Pair (reference, Names.extensionname) ) | `Exception (x1, x2) -> C ( "`Exception", ((x1 :> r), x2), Pair (reference, Names.exceptionname) ) | `Value (x1, x2) -> C ("`Value", ((x1 :> r), x2), Pair (reference, Names.valuename)) | `Class (x1, x2) -> C ("`Class", ((x1 :> r), x2), Pair (reference, Names.classname)) | `ClassType (x1, x2) -> C ( "`ClassType", ((x1 :> r), x2), Pair (reference, Names.classtypename) ) | `Method (x1, x2) -> C ("`Method", ((x1 :> r), x2), Pair (reference, Names.methodname)) | `InstanceVariable (x1, x2) -> C ( "`InstanceVariable", ((x1 :> r), x2), Pair (reference, Names.instancevariablename) ) | `Label (x1, x2) -> C ("`Label", ((x1 :> r), x2), Pair (reference, Names.labelname))) and resolved_reference : rr t = Variant (function | `Canonical (x1, x2) -> C ( "`Canonical", ((x1 :> rr), (x2 :> r)), Pair (resolved_reference, reference) ) | `Class (x1, x2) -> C ( "`Class", ((x1 :> rr), x2), Pair (resolved_reference, Names.classname) ) | `ClassType (x1, x2) -> C ( "`ClassType", ((x1 :> rr), x2), Pair (resolved_reference, Names.classtypename) ) | `Constructor (x1, x2) -> C ( "`Constructor", ((x1 :> rr), x2), Pair (resolved_reference, Names.constructorname) ) | `Exception (x1, x2) -> C ( "`Exception", ((x1 :> rr), x2), Pair (resolved_reference, Names.exceptionname) ) | `Extension (x1, x2) -> C ( "`Extension", ((x1 :> rr), x2), Pair (resolved_reference, Names.extensionname) ) | `Field (x1, x2) -> C ( "`Field", ((x1 :> rr), x2), Pair (resolved_reference, Names.fieldname) ) | `Hidden x -> C ("`Hidden", (x :> rr), resolved_reference) | `Identifier x -> C ("`Identifier", (x :> id_t), identifier) | `InstanceVariable (x1, x2) -> C ( "`InstanceVariable", ((x1 :> rr), x2), Pair (resolved_reference, Names.instancevariablename) ) | `Label (x1, x2) -> C ( "`Label", ((x1 :> rr), x2), Pair (resolved_reference, Names.labelname) ) | `Method (x1, x2) -> C ( "`Method", ((x1 :> rr), x2), Pair (resolved_reference, Names.methodname) ) | `Module (x1, x2) -> C ( "`Module", ((x1 :> rr), x2), Pair (resolved_reference, Names.modulename) ) | `ModuleType (x1, x2) -> C ( "`ModuleType", ((x1 :> rr), x2), Pair (resolved_reference, Names.moduletypename) ) | `Alias (x1, x2) -> C ( "`Alias", ((x1 :> rp), (x2 :> rr)), Pair (resolved_path, resolved_reference) ) | `AliasModuleType (x1, x2) -> C ( "`AliasModuleType", ((x1 :> rp), (x2 :> rr)), Pair (resolved_path, resolved_reference) ) | `Type (x1, x2) -> C ( "`Type", ((x1 :> rr), x2), Pair (resolved_reference, Names.typename) ) | `Value (x1, x2) -> C ( "`Value", ((x1 :> rr), x2), Pair (resolved_reference, Names.valuename) )) let resolved_fragment_root : Paths.Fragment.Resolved.root t = Variant (function | `ModuleType x -> C ("`ModuleType", (x :> rp), resolved_path) | `Module x -> C ("`Module", (x :> rp), resolved_path)) let rec resolved_fragment : rf t = Variant (function | `Root x -> C ("`Root", x, resolved_fragment_root) | `Subst (x1, x2) -> C ( "`Subst", ((x1 :> rp), (x2 :> rf)), Pair (resolved_path, resolved_fragment) ) | `Alias (x1, x2) -> C ( "`Alias", ((x1 :> rp), (x2 :> rf)), Pair (resolved_path, resolved_fragment) ) | `Module (x1, x2) -> C ( "`Module", ((x1 :> rf), x2), Pair (resolved_fragment, Names.modulename) ) | `Module_type (x1, x2) -> C ( "`Module_type", ((x1 :> rf), x2), Pair (resolved_fragment, Names.moduletypename) ) | `Type (x1, x2) -> C ("`Type", ((x1 :> rf), x2), Pair (resolved_fragment, Names.typename)) | `Class (x1, x2) -> C ( "`Class", ((x1 :> rf), x2), Pair (resolved_fragment, Names.classname) ) | `ClassType (x1, x2) -> C ( "`ClassType", ((x1 :> rf), x2), Pair (resolved_fragment, Names.classtypename) ) | `OpaqueModule x -> C ("`OpaqueModule", (x :> rf), resolved_fragment)) let rec fragment : f t = Variant (function | `Resolved x -> C ("`Resolved", (x :> rf), resolved_fragment) | `Dot (x1, x2) -> C ("`Dot", ((x1 :> f), x2), Pair (fragment, string)) | `Root -> C0 "`Root") end let root = Root.t let modulename = Names.modulename (* Indirection seems to be required to make the type open. *) let identifier : [< Paths.Identifier.t ] Type_desc.t = Indirect ((fun n -> (n :> Paths.Identifier.t)), General_paths.identifier) let resolved_path : [< Paths.Path.Resolved.t ] Type_desc.t = Indirect ((fun n -> (n :> General_paths.rp)), General_paths.resolved_path) let path : [< Paths.Path.t ] Type_desc.t = Indirect ((fun n -> (n :> General_paths.p)), General_paths.path) let resolved_fragment = Indirect ((fun n -> (n :> General_paths.rf)), General_paths.resolved_fragment) let fragment = Indirect ((fun n -> (n :> General_paths.f)), General_paths.fragment) let reference = Indirect ((fun n -> (n :> General_paths.r)), General_paths.reference)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>