non_std 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 std::env;

// #[test]
// fn trybuild_tests()
// {
//   println!( "current_dir : {:?}", env::current_dir().unwrap() );
//   // let t = trybuild::TestCases::new();
//   // t.pass( "rust/test/former/test/basic_manual.rs" );
// }

// /* zzz : implement module::mod_at */
//
// mods_at!{ "./all"
// {
//   mod basic_manual;
//   mod basic;
//   mod without_perform;
// }}

use super::*;
use super::Former;

#[ path = "./all/basic_manual.rs" ]
mod basic_manual;
#[ path = "./all/basic.rs" ]
mod basic;
#[ path = "./all/without_perform.rs" ]
mod without_perform;

/* zzz : use macro mod_at */
// mod custom_getter_manual { include!( "./all/custom_getter_manual.rs" ); }
// mod custom_getter { include!( "./all/custom_getter.rs" ); }