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 = "cell_factory" ) ]
tests_impls!
{

  fn node_make()
  {
    use TheModule::prelude::*;

    let node : TheModule::canonical::Node = make!( 13 );
    a_id!( node.id(), 13.into() );

  }

  fn nodecell_make()
  {
    use TheModule::prelude::*;

    let node : TheModule::canonical::Node = make!( 13 );
    a_id!( node.id(), 13.into() );
    let cellnode : TheModule::NodeCell< _ > = make!( node );

  }

}

//

#[ cfg( feature = "cell_factory" ) ]
tests_index!
{

  node_make,
  nodecell_make,

}