meta_tools 0.2.1

Collection of general purpose meta tools.
Documentation

module::meta_tools rust-status stable

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