pub fn parse<I: Iterator<Item = String>>(
args: I,
config: &ParsingConfig,
) -> Result<ParsedArgs, ParsingError>
Expand description
Parses the argument list according to the provided configuration. The result is either an error or the parsed arguments.
Note that the argument list passed to this function cannot contain non-unicode characters.