A simple dynamic argument system
```rust use dynarg::{ArgData, Args};
/// Where normally you'd need to have a fixed set of arguments, each of which would be roughly fixed types
/// -- you can dynamically push arguments on the fly instead.
/// This is useful when you need a consistent function signature for different types of functions,
/// each needing different arguments
fn draw(args: &mut Args
fn main() {
let mut args = Args::
// This is how you add arguments
args.insert("thing_to_draw", ArgData::String("apple".to_owned()));
args.insert("size", ArgData::Float(5.2));
draw(&mut args);
if !args.all_used() {
println!("Warning! I didn't use all my arguments D:");
}
// Clear all the used flags on args
args.reset_status();
} ```
ArgData
)