package ez_cmdliner

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

Module Ezcmd.TYPESSource

Sourcetype block = [
  1. | `S of string
  2. | `P of string
  3. | `Pre of string
  4. | `I of string * string
  5. | `Noblank
  6. | `Blocks of block list
]
Sourcetype info
Sourcetype env
Sourcemodule Arg : sig ... end
Sourcetype arg_list = (string list * Arg.spec * info) list
Sourcetype command = {
  1. cmd_name : string;
  2. cmd_action : unit -> unit;
  3. cmd_args : arg_list;
  4. cmd_man : block list;
  5. cmd_doc : string;
}