package ocaml-base-compiler
Official release 5.2.1
Install
Dune Dependency
Authors
Maintainers
Sources
ocaml-5.2.1.tar.gz
sha256=2d0f8090951a97a2c0e5b8a11e90096c0e1791d2e471e4a67f87e3b974044cd0
doc/odoc_info/Odoc_info/Parameter/index.html
Module Odoc_info.Parameter
Representation and manipulation of method / function / class / module parameters.
Types
type simple_name = Odoc_parameter.simple_name = {
sn_name : string;
sn_type : Types.type_expr;
mutable sn_text : text option;
}
Representation of a simple parameter name
type param_info = Odoc_parameter.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_info
A parameter is just a param_info.
Functions
val complete_name : parameter -> string
Access to the name as a string. For tuples, parentheses and commas are added.
val typ : parameter -> Types.type_expr
Access to the complete type.
val names : parameter -> string list
Access to the list of names ; only one for a simple parameter, or a list for a tuple.
val type_by_name : parameter -> string -> Types.type_expr
Access to the type of a specific name.