Arguments Package Documentation Build

The package provides a parser for command-line arguments.

Example

```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::("bar").unwrap(), false); asserteq!(arguments.get::("baz").unwrap(), 69); asserteq!(arguments.getall::("baz").unwrap(), &[42, 69]); asserteq!(arguments.get::("qux").unwrap(), "Hello, world!"); ```

Contribution

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.