package hardcaml_waveterm

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

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.