module::meta_tools rust-status stable

Collection of general purpose meta tools.

Sample

```rust use meta_tools::*;

fn main() { let metamap = hmap! { 3 => 13 }; let mut stdmap = std::collections::HashMap::new(); stdmap.insert( 3, 13 ); asserteq!( metamap, stdmap ); } ```

To add to your project

sh cargo add meta_tools

Try out from the repository

sh git clone https://github.com/Wandalen/wTools cd wTools cd sample/rust/meta_tools_trivial cargo run