Module Root.Odoc_file

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
val hidden : t -> bool