package core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t = {
  1. summary : string;
  2. readme : string Base.Option.t;
  3. subcommands : (string, 'a) Core_kernel.List.Assoc.t Core_kernel.Lazy.t;
}
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val subcommands : 'a t -> (string, 'a) Core_kernel.List.Assoc.t Core_kernel.Lazy.t
val readme : 'a t -> string Base.Option.t
val summary : 'a t -> string
module Fields : sig ... end
val t_of_sexp : (Ppx_sexp_conv_lib.Sexp.t -> 'a) -> Ppx_sexp_conv_lib.Sexp.t -> 'a t
val sexp_of_t : ('a -> Ppx_sexp_conv_lib.Sexp.t) -> 'a t -> Ppx_sexp_conv_lib.Sexp.t
val map : 'a t -> f:('a -> 'b) -> 'b t