package hardcaml_waveterm

  1. Overview
  2. Docs

Display format for a single wave (a row in the complete waveform).

type t =
  1. | Binary
    (*

    Binary.

    *)
  2. | Bit
    (*

    Like Binary, but shows a single bit as a line.

    *)
  3. | Bit_or of t
    (*

    If width=1 then Bits otherwise t

    *)
  4. | Hex
    (*

    Hexadecimal.

    *)
  5. | Unsigned_int
    (*

    Unsigned integer.

    *)
  6. | Int
    (*

    Signed integer.

    *)
  7. | Index of Base.string Base.list
    (*

    Use data as index into given list of strings.

    *)
  8. | Custom of Hardcaml.Bits.t -> Base.string
    (*

    User defined formatting.

    *)
val sexp_of_t : t -> Sexplib0.Sexp.t

Custom constructors are compared for physical equality.

include Base.Equal.S with type t := t
val equal : t Base.Equal.equal