package ocaml-compiler
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
First alpha release of OCaml 5.5.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
5.5.0-alpha1.tar.gz
sha256=9b78c8734c4e1c2efa852326e0dce8b24f8c8d0fbd01645b6165c9a9b15898df
doc/odoc_info/Odoc_parameter/index.html
Module Odoc_parameter
Representation and manipulation of method / function / class parameters.
Types
type simple_name = {sn_name : string;sn_type : Types.type_expr;mutable sn_text : Odoc_types.text option;
}Representation of a simple parameter name
type param_info = | Simple_name of simple_name| Tuple of param_info list * Types.type_expr(*Representation of parameter names. We need it to represent parameter names in tuples. The value
*)Tuple ([], t)stands for an anonymous parameter.
type parameter = param_infoA parameter is just a param_info.
Functions
val complete_name : parameter -> stringaccess to the name as a string. For tuples, parentheses and commas are added.
val typ : parameter -> Types.type_expraccess to the complete type
val update_parameter_text :
(string -> Odoc_types.text option) ->
parameter ->
unitUpdate the text of a parameter using a function returning the optional text associated to a parameter name.
val desc_by_name : parameter -> string -> Odoc_types.text optionaccess to the description of a specific name.
val names : parameter -> string listaccess to the list of names ; only one for a simple parameter, or a list for tuples.
val type_by_name : parameter -> string -> Types.type_expraccess to the type of a specific name.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>