Jargon::Result
Outcome of parsing arguments. Carries the parsed data, any validation
errors, and the resolved subcommand, plus flags describing meta-requests
(help, shell completion) that run acts on automatically. A pending
help/completion request is not a validation outcome — check
help_requested?/completion_requested? before treating errors as final.
Constructors
Instance methods
data
Sourceerrors
Sourcehelp_requested?
Sourcesubcommand
Resolved subcommand name, space-separated for nested commands; nil for a flat CLI or when no subcommand matched.
valid?
True when parsing produced no validation errors. Note a help/completion request is also error-free, so guard those separately when it matters.