module Action:sig
..end
type 'accum
t
'accum
-mutating action to perform when processing a flagval noarg : ('accum -> unit) -> 'accum t
val arg : ('accum -> string -> unit) -> 'accum t
val rest : ('accum -> string list -> unit) -> 'accum t
rest f
: an action for a flag that signals the end of flag
processing. all remaining arguments are passed to the f
rest f
: an action for a flag that signals the end of flag
processing. all remaining arguments are passed to the f
val int : ('accum -> int -> unit) -> 'accum t
val bool : ('accum -> bool -> unit) -> 'accum t
val float : ('accum -> float -> unit) -> 'accum t