package dune
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=77cb5f483221b266ded2b85fc84173ae0089a25134a086be922e82c131456ce6
sha512=02f00fd872aa49b832fc8c1e928409f23c79ddf84a53009a58875f222cca36fbb92c905e12c539caec9cbad723f195a8aa24218382dca35a903b3f52b11f06f2
doc/dune._stdune/Stdune/User_message/index.html
Module Stdune.User_message
A message for the user
User messages are styled document that can be printed to the console or in the log file.
module Style : sig ... endSymbolic styles that can be used inside messages. These styles are later converted to actual concrete styles depending on the output device. For instance, when printed to the terminal they are converted to ansi terminal styles (Ansi_color.Style.t list values).
A user message.contents composed of an optional file location and a list of paragraphs.
The various paragraphs will be printed one after the other and will all start at the beginning of a line. They are all wrapped inside a Pp.box.
When hints are provided, they are printed as last paragraphs and prefixed with "Hint:". Hints should give indication to the user for how to fix the issue.
module Print_config : sig ... endval make :
?loc:Stdune__.Loc0.t ->
?prefix:Style.t Pp.t ->
?hints:Style.t Pp.t list ->
Style.t Pp.t list ->
tConstruct a user message from a list of paragraphs.
The first paragraph is prefixed with prefix inside the box. prefix should not end with a space as a space is automatically inserted by make if necessary.
val print : ?config:Print_config.t -> t -> unitPrint to stdout (not thread safe)
val prerr : ?config:Print_config.t -> t -> unitPrint to stderr (not thread safe)