The package provides a data structure for managing named parameters.
```rust use options::Options;
let mut options = Options::new();
options.set("foo", 42) .set("bar", "To be or not to be?") .set("baz", "Hello, world!".to_string());
println!("foo = {}", options.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.