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 t =
  1. | Page of string
  2. | Compilation_unit of compilation_unit
val create_unit : force_hidden:bool -> string -> t
val create_page : string -> t
val name : t -> string