fn arg_values<'a, T: Deref<Target = str>>(
args: &'a [T],
needle: &'a str,
) -> impl Iterator<Item = &'a str>Expand description
Returns the values of the command-line options that match find_arg. The options are built-in
to be of the form --arg=value or --arg value.