Module Hardcaml_waveterm__.Display_rules
module Rule : sig ... end
A
Rule.t
is a predicate onPort.t
s that specifies the display format of matching ports.
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val empty : t
val add_above : t -> Rule.t -> t
add_above t rule
returns rules where ports matchingrule
appear above ports matching the rules int
.
val add_below : t -> Rule.t -> t
add_below t rule
returns rules where ports matchingrule
appear below ports matching the rules int
.
val of_list : Rule.t Hardcaml_waveterm__.Import.list -> t
val combine : above:t -> below:t -> t
combine ~above ~below
returns rules where ports matching the rules inabove
appear above ports matching the rules inbelow
.
val sort_ports_and_formats : t -> Hardcaml_waveterm.Port.t Hardcaml_waveterm__.Import.list -> (Hardcaml_waveterm.Port.t * Hardcaml_waveterm.Wave_format.t * Hardcaml_waveterm.Wave_format.alignment) Hardcaml_waveterm__.Import.list
Construct the port order and formatting from the display rules and ports (derived from a testbench simulation object). Unmatched ports are not shown, unless
Rule.default
(or a similar custom rule) is included as the last display rule.
val is_displayed : t -> Hardcaml_waveterm.Port.t -> Hardcaml_waveterm__.Import.bool
Check if a given port is displayed by any of the rules.
val is_signal_displayed : t -> Hardcaml.Signal.t -> Hardcaml_waveterm__.Import.bool
Check if a given signal (treated as an internal port) is displayed by any of the rules.