package hardcaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. name : Base.String.t;
    (*

    Name of the field

    *)
  2. type_ : Type.t;
    (*

    Field type - a signal or a sub-module

    *)
  3. sequence : Sequence.t Base.Option.t;
    (*

    Is the field type an array or list?

    *)
  4. doc : Base.String.t Base.Option.t;
    (*

    Ocaml documentation string, if any. Note that this must be placed in the ml and not mli.

    *)
}
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t