package ocaml-base-compiler

  1. Overview
  2. Docs
type t_value = Odoc_value.t_value = {
  1. val_name : Name.t;
  2. mutable val_info : info option;
  3. val_type : Types.type_expr;
  4. val_recursive : bool;
  5. mutable val_parameters : Odoc_parameter.parameter list;
  6. mutable val_code : string option;
  7. mutable val_loc : location;
}
type t_attribute = Odoc_value.t_attribute = {
  1. att_value : t_value;
  2. att_mutable : bool;
  3. att_virtual : bool;
}
type t_method = Odoc_value.t_method = {
  1. met_value : t_value;
  2. met_private : bool;
  3. met_virtual : bool;
}
val is_function : t_value -> bool
val value_parameter_text_by_name : t_value -> string -> text option