package hardcaml_waveterm

  1. Overview
  2. No Docs
A terminal based digital waveform viewer for Hardcaml

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=a6780e4310f46cd71ff8a3cdf12bb51afdf0eaea5e84645a148a4ecd0f02920b

doc/src/hardcaml_waveterm.kernel/data_intf.ml.html

Source file data_intf.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
(** Waveform data interface. *)

module type S = sig
  type t [@@deriving sexp_of, equal]

  val width : t -> int
  val length : t -> int
  val get : t -> int -> Hardcaml.Bits.t
  val get_digestible_string : t -> Bytes.t * int
end

module type Data = sig
  module type S = S
end
OCaml

Innovation. Community. Security.