package odoc

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Root.Odoc_fileSource

Sourcetype compilation_unit = {
  1. name : string;
  2. hidden : bool;
}
Sourcetype t =
  1. | Page of string
  2. | Compilation_unit of compilation_unit
Sourceval create_unit : force_hidden:bool -> string -> t
Sourceval create_page : string -> t
Sourceval name : t -> string
Sourceval hidden : t -> bool