package ocaml-base-compiler

  1. Overview
  2. Docs
type result_element =
  1. | Res_module of Odoc_module.t_module
  2. | Res_module_type of Odoc_module.t_module_type
  3. | Res_class of Odoc_class.t_class
  4. | Res_class_type of Odoc_class.t_class_type
  5. | Res_value of Odoc_value.t_value
  6. | Res_type of Odoc_type.t_type
  7. | Res_extension of Odoc_extension.t_extension_constructor
  8. | Res_exception of Odoc_exception.t_exception
  9. | Res_attribute of Odoc_value.t_attribute
  10. | Res_method of Odoc_value.t_method
  11. | Res_section of string * Odoc_types.text
  12. | Res_recfield of Odoc_type.t_type * Odoc_type.record_field
  13. | Res_const of Odoc_type.t_type * Odoc_type.variant_constructor
type result = result_element list
module type Predicates = sig ... end
module P_name : sig ... end
module Search_by_name : sig ... end
val values : Odoc_module.t_module list -> Odoc_value.t_value list
val exceptions : Odoc_module.t_module list -> Odoc_exception.t_exception list
val types : Odoc_module.t_module list -> Odoc_type.t_type list
val attributes : Odoc_module.t_module list -> Odoc_value.t_attribute list
val methods : Odoc_module.t_module list -> Odoc_value.t_method list
val classes : Odoc_module.t_module list -> Odoc_class.t_class list
val class_types : Odoc_module.t_module list -> Odoc_class.t_class_type list
val modules : Odoc_module.t_module list -> Odoc_module.t_module list
val module_types : Odoc_module.t_module list -> Odoc_module.t_module_type list
val type_exists : Odoc_module.t_module list -> Str.regexp -> bool
val value_exists : Odoc_module.t_module list -> Str.regexp -> bool
val module_exists : Odoc_module.t_module list -> Str.regexp -> bool
val module_type_exists : Odoc_module.t_module list -> Str.regexp -> bool
val class_exists : Odoc_module.t_module list -> Str.regexp -> bool
val class_type_exists : Odoc_module.t_module list -> Str.regexp -> bool
val extension_exists : Odoc_module.t_module list -> Str.regexp -> bool
val exception_exists : Odoc_module.t_module list -> Str.regexp -> bool
val attribute_exists : Odoc_module.t_module list -> Str.regexp -> bool
val method_exists : Odoc_module.t_module list -> Str.regexp -> bool
val find_section : Odoc_module.t_module list -> Str.regexp -> Odoc_types.text