Up

Module Group_info

Signature

type 'a t = {
summary
: string ;
readme
: string Core_kernel.Std.sexp_option ;
subcommands
: (string, 'a) Core_kernel.Std.List.Assoc.t ;
}
val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
val sexp_of_t : ('a -> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
val subcommands : 'a t -> (string, 'a) Core_kernel.Std.List.Assoc.t
val readme : 'a t -> string Core_kernel.Std.sexp_option
val summary : 'a t -> string
module Fields : sig .. end
val compare : ('a -> 'a -> int) -> 'a t -> 'a t -> int
val map : 'a t -> f:('a -> 'b) -> 'b t