Module Root.Odoc_file

type compilation_unit = {
name : string;
hidden : bool;
}
type t =
| Page of string
| 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