Files
Geneweb/lib/birthDeathDisplay.mli
2024-03-05 22:01:20 +01:00

27 lines
1.0 KiB
OCaml

val print_birth : Config.config -> Gwdb.base -> unit
(** Lists the last births *)
val print_death : Config.config -> Gwdb.base -> unit
(** Lists the last deaths *)
val print_longest_lived : Config.config -> Gwdb.base -> unit
(** Lists the persons who lived the longest *)
val print_oldest_alive : Config.config -> Gwdb.base -> unit
(** Displays the list of the oldest persons that are still alive or, if unknown,
whose death are not probable *)
val print_marriage : Config.config -> Gwdb.base -> unit
(** Lists the last marriages *)
val print_oldest_engagements : Config.config -> Gwdb.base -> unit
(** Displays the list of the oldest couples that still exist *)
val print_statistics : Config.config -> unit
(** Displays several links for statistics: latest births, death, marriages, the
oldest couples, persons that are alive and who lived the longest, as well as
a population pyramid *)
val print_population_pyramid : Config.config -> Gwdb.base -> unit
(** Displays a population pyramid from the base data *)