The package provides a parser for command-line arguments.
```rust // foo --no-bar --baz 42 --baz 69 --qux "Hello, world!" let arguments = std::env::args(); let arguments = arguments::parse(arguments).unwrap();
asserteq!(arguments.program, "foo");
asserteq!(arguments.get::
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.