package odoc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type compilation_unit = {
  1. name : string;
  2. hidden : bool;
}
type page = {
  1. name : string;
  2. title : Comment.link_content option;
  3. frontmatter : Frontmatter.t;
}
type t =
  1. | Page of page
  2. | Compilation_unit of compilation_unit
  3. | Impl of string
  4. | Asset of string
val create_unit : force_hidden:bool -> string -> t
val create_page : string -> Comment.link_content option -> Frontmatter.t -> t
val create_impl : string -> t
val asset : string -> t
val name : t -> string
val hidden : t -> bool
OCaml

Innovation. Community. Security.