std_tools 0.1.4

Collection of general purpose tools for solving problems. Fundamentally extend the language without spoiling, so may be used solely or in conjunction with another module of such kind.
Documentation
// use super::*;
// #[ cfg( feature = "canonical" ) ]
// use TheModule::canonical::CellNodeFactory as TheFactory;
//
// #[ cfg( feature = "canonical" ) ]
// include!( "./factory_impls.rs" );
//
// #[ cfg( feature = "canonical" ) ]
// tests_impls!
// {
//
//   fn nodecell_make()
//   {
//     use TheModule::prelude::*;
//
//     let node : TheModule::canonical::Node = make!( 13 );
//     a_id!( node.id(), 13.into() );
//     let cellnode : < TheModule::canonical::CellNodeFactory as GraphNodesNominalInterface >::NodeHandle = make!( node );
//
//   }
//
// }
//
// //
//
// #[ cfg( feature = "canonical" ) ]
// tests_index!
// {
//
//   node,
//   basic,
//   make_default,
//   make_with_edge_list,
//   make_with_edge_list_string,
//   graph_print,
//
//   nodecell_make,
//
// }