10 releases
Uses new Rust 2021
new 0.2.7 | May 14, 2022 |
---|---|
0.2.6 | May 11, 2022 |
0.2.0 | Apr 26, 2022 |
0.1.2 | Apr 26, 2022 |
0.1.0 | Jan 10, 2022 |
#68 in Development tools
2,690 downloads per month
Used in 37 crates
(5 directly)
35KB
1K
SLoC
module::meta_tools

Collection of general purpose meta tools.
Sample
use meta_tools::*;
fn main()
{
let meta_map = hmap! { 3 => 13 };
let mut std_map = std::collections::HashMap::new();
std_map.insert( 3, 13 );
assert_eq!( meta_map, std_map );
}
To add to your project
cargo add meta_tools
Try out from the repository
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/meta_tools_trivial
cargo run
lib.rs
:
Collection of general purpose meta tools.
Dependencies
~8KB