package virtual_dom

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | No_warnings
  2. | All_warnings
  3. | Stop_after_quota of int

Controls whether to_raw should print warning messages when one attribute overrides another of the same name (for example, if there are two title attributes, the second will end up in the result, and a warning will be emitted).

If an application never emits any warnings, it is probably safe to always use good merge semantics (that is, use many or @ to combine lists of attributes) for everything.

val current : t ref

Defaults to Stop_after_quota 100

module For_testing : sig ... end