module Action:sig..end
type 'accum t
'accum-mutating action to perform when processing a flagval noarg : ('accum -> unit) -> 'accum tval arg : ('accum -> string -> unit) -> 'accum tval rest : ('accum -> string list -> unit) -> 'accum trest 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 tval bool : ('accum -> bool -> unit) -> 'accum tval float : ('accum -> float -> unit) -> 'accum t