package ocp-index
Lightweight completion and documentation browsing for OCaml libraries
Install
Dune Dependency
Authors
Maintainers
Sources
1.3.7.tar.gz
md5=8ba7ad0ff42d98e82c1359f97b98a692
sha512=54a5aad2b99126fe14e7e9c98184e58b497cbc0e5e4ac064ebaca2bec750fc5800d97edbff4cde0a323d63cd7a5e5d9942cf05467d3149fe6e3bbf03f5fe3025
doc/src/ocp-index.lib/indexPredefined.ml.html
Source file indexPredefined.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
(**************************************************************************) (* *) (* Copyright 2013 OCamlPro *) (* *) (* All rights reserved. This file is distributed under the terms of *) (* the Lesser GNU Public License version 3.0. *) (* *) (* This software is distributed in the hope that it will be useful, *) (* but WITHOUT ANY WARRANTY; without even the implied warranty of *) (* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *) (* Lesser GNU General Public License for more details. *) (* *) (**************************************************************************) open IndexTypes open Outcometree (* List and doc taken from http://caml.inria.fr/pub/docs/manual-ocaml/manual034.html (4.00.1) *) #if OCAML_VERSION >= (4,08,0) let n s = {printed_name = s} #else let n s = s #endif let mktype name ?(params=[]) ?(def=Otyp_abstract) doc = { path = []; orig_path = []; kind = Type; name = name; ty = Some (Osig_type ( { otype_name = name; #if OCAML_VERSION >= (5,2,0) otype_params = List.map (fun v -> { ot_non_gen = false; ot_name = v; ot_variance = Asttypes.(NoVariance, NoInjectivity) } ) params; #elif OCAML_VERSION >= (4,12,0) otype_params = List.map (fun v -> v,Asttypes.(NoVariance, NoInjectivity)) params; #else otype_params = List.map (fun v -> v,(true,true)) params; #endif otype_type = def; otype_private = Asttypes.Public; #if OCAML_VERSION >= (4,03,0) #if OCAML_VERSION >= (4,10,0) otype_immediate = Type_immediacy.Unknown; #else otype_immediate = false; #endif #if OCAML_VERSION >= (4,04,0) otype_unboxed = false; #endif #endif otype_cstrs = [] }, Orec_not)); loc_sig = Lazy.from_val Location.none; loc_impl = Lazy.from_val Location.none; doc = Lazy.from_val (Some doc); file = Cmi "*built-in*"; } let mkvariant name parent params = { path = []; orig_path = []; kind = Variant parent; name = name; ty = Some (Osig_type ( { otype_name = ""; otype_params = []; otype_type = (match params with [] -> Otyp_sum [] | l -> Otyp_tuple l); otype_private = Asttypes.Public; #if OCAML_VERSION >= (4,03,0) #if OCAML_VERSION >= (4,10,0) otype_immediate = Type_immediacy.Unknown; #else otype_immediate = false ; #endif #if OCAML_VERSION >= (4,04,0) otype_unboxed = false; #endif #endif otype_cstrs = [] }, Orec_not)); loc_sig = Lazy.from_val Location.none; loc_impl = Lazy.from_val Location.none; doc = Lazy.from_val None; file = Cmi "*built-in*"; } let mkexn name params doc = { path = []; orig_path = []; kind = Exception; name = name; ty = Some (Osig_typext ({ oext_name = name; oext_type_name = "exn"; oext_type_params = []; oext_args = params; oext_ret_type = None; oext_private = Asttypes.Public }, Oext_exception)); loc_sig = Lazy.from_val Location.none; loc_impl = Lazy.from_val Location.none; doc = Lazy.from_val (Some doc); file = Cmi "*built-in*"; } let mkkwd name = { path = []; orig_path = []; kind = Keyword; name = name; ty = None; loc_sig = Lazy.from_val Location.none; loc_impl = Lazy.from_val Location.none; doc = Lazy.from_val None; file = Cmi "*built-in*"; } let var name = Otyp_var (false, name) let constr ?(params=[]) name = Otyp_constr (Oide_ident name, List.map var params) #if OCAML_VERSION >= (4,14,0) let out_constr ~name ~args ~ret = { Outcometree.ocstr_name = name; Outcometree.ocstr_args = args; Outcometree.ocstr_return_type = ret; } #else let out_constr ~name ~args ~ret = (name, args, ret) #endif let ibool = mktype "bool" ~def:(Otyp_sum [out_constr ~name:"true" ~args:[] ~ret:None; out_constr ~name:"false" ~args:[] ~ret:None]) "The type of booleans (truth values)." let ilist = mktype "list" ~params:["'a"] ~def:(Otyp_sum [out_constr ~name:"[]" ~args:[] ~ret:None; out_constr ~name:"::" ~args:[var "a"; constr ~params:["a"] (n "list")] ~ret:None]) "The type of lists whose elements have type 'a." let ioption = mktype "option" ~def:(Otyp_sum [out_constr ~name:"None" ~args:[] ~ret:None; out_constr ~name:"Some" ~args:[var "a"] ~ret:None]) "The type of optional values of type 'a." let types = [ mktype "int" "The type of integer numbers."; mktype "char" "The type of characters."; mktype "string" "The type of character strings."; mktype "float" "The type of floating-point numbers."; ibool; mktype "unit" ~def:(Otyp_stuff "()") "The type of the unit value."; mktype "exn" "The type of exception values."; mktype "array" "The type of arrays whose elements have type 'a."; ilist; ioption; mktype "int32" "The type of signed 32-bit integers. See the Int32 module."; mktype "int64" "The type of signed 64-bit integers. See the Int64 module."; mktype "nativeint" "The type of signed, platform-native integers (32 bits on 32-bit \ processors, 64 bits on 64-bit processors). See the Nativeint module."; mktype "format6" "The type of format strings. 'a is the type of the parameters of the \ format, 'f is the result type for the printf-style functions, 'b is the \ type of the first argument given to %a and %t printing functions (see \ module Printf), 'c is the result type of these functions, and also the \ type of the argument transmitted to the first argument of kprintf-style \ functions, 'd is the result type for the scanf-style functions (see \ module Scanf), and 'e is the type of the receiver function for the \ scanf-style functions."; mktype "lazy_t" "This type is used to implement the Lazy module. It should not be used \ directly."; ] let variants = [ mkvariant "true" ibool []; mkvariant "false" ibool []; mkvariant "::" ilist [var "a"; constr ~params:["a"] (n "list")]; mkvariant "[]" ilist []; mkvariant "Some" ioption [var "a"]; mkvariant "None" ioption []; ] let exceptions = [ mkexn "Match_failure" [constr (n "string"); constr (n "int"); constr (n "int")] "Exception raised when none of the cases of a pattern-matching apply. \ The arguments are the location of the match keyword in the source code \ (file name, line number, column number)."; mkexn "Assert_failure" [constr (n "string"); constr (n "int"); constr (n "int")] "Exception raised when an assertion fails. The arguments are the \ location of the assert keyword in the source code (file name, line \ number, column number)."; mkexn "Invalid_argument" [constr (n "string")] "Exception raised by library functions to signal that the given \ arguments do not make sense."; mkexn "Failure" [constr (n "string")] "Exception raised by library functions to signal that they are undefined \ on the given arguments."; mkexn "Not_found" [] "Exception raised by search functions when the desired object could not \ be found."; mkexn "Out_of_memory" [] "Exception raised by the garbage collector when there is insufficient \ memory to complete the computation."; mkexn "Stack_overflow" [] "Exception raised by the bytecode interpreter when the evaluation stack \ reaches its maximal size. This often indicates infinite or excessively \ deep recursion in the user’s program."; mkexn "Sys_error" [constr (n "string")] "Exception raised by the input/output functions to report an operating \ system error."; mkexn "End_of_file" [] "Exception raised by input functions to signal that the end of file has \ been reached."; mkexn "Division_by_zero" [] "Exception raised by integer division and remainder operations when \ their second argument is zero."; mkexn "Sys_blocked_io" [] "A special case of Sys_error raised when no I/O is possible on a \ non-blocking I/O channel."; mkexn "Undefined_recursive_module" [constr (n "string"); constr (n "int"); constr (n "int")] "Exception raised when an ill-founded recursive module definition is \ evaluated. The arguments are the location of the definition in the \ source code (file name, line number, column number)."; ] let keywords = List.map mkkwd [ "and"; "as"; "assert"; "begin"; "class"; "constraint"; "do"; "done"; "downto"; "else"; "end"; "exception"; "external"; "false"; "for"; "fun"; "function"; "functor"; "if"; "in"; "include"; "inherit"; "inherit!"; "initializer"; "lazy"; "let"; "match"; "method"; "method!"; "module"; "mutable"; "new"; "object"; "of"; "open"; "open!"; "private"; "rec"; "sig"; "struct"; "then"; "to"; "true"; "try"; "type"; "val"; "val!"; "virtual"; "when"; "while"; "with"; ] let all = types @ variants @ exceptions @ keywords
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>