package ez_cmdliner

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 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
]
type env
type info
type sub
module Arg : sig ... end
type arg_list = (string list * Arg.spec * info) list
type command = {
  1. cmd_name : string;
  2. cmd_action : unit -> unit;
  3. cmd_args : arg_list;
  4. cmd_man : block list;
  5. cmd_doc : string;
}