Crates.io | clp-lib |
lib.rs | clp-lib |
version | 0.1.1 |
source | src |
created_at | 2022-02-17 19:26:07.711971 |
updated_at | 2022-02-17 19:29:38.759849 |
description | A single function to parse conditional and unconditional command line arguments of any type. |
homepage | |
repository | |
max_upload_size | |
id | 534304 |
size | 3,925 |
#Example
let Unconditionals = vec!["--Utestflag1","--Utestflag2"];
let Conditionals = vec!["-utestflag3"];
let args = parse(Conditionals, Unconditionals).expect("Arguments not properly formatted"); //Will return an error if unconditional arguments not given or input arguments not properly formatted.
let conds = args.0; // hashmap of conditionals as keys and data as values
let unconds = args.1; // same for unconditionals