package posix-getopt

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type short = char
type long = string * char
type arg = [
  1. | `None of unit -> unit
  2. | `Optional of string option -> unit
  3. | `Required of string -> unit
]
type 'a opt = {
  1. name : 'a;
  2. arg : arg;
}
exception Unknown_option of char
exception Missing_argument of char
val print_error : bool -> unit
val reset : unit -> unit
val getopt : string array -> short opt list -> string array
val getopt_long : string array -> long opt list -> string array
val getopt_long_only : string array -> long opt list -> string array