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
/// Internal namespace.
pub( crate ) mod private
{
}

/* zzz : use name protected */
/* zzz : use for implementing of macro mod_interface */

/// Protected namespace of the module.
pub mod protected
{
  pub use super::orphan::*;
  #[ cfg( feature = "impls_index" ) ]
  pub use ::impls_index::orphan::*;
  #[ cfg( feature = "mod_interface" ) ]
  pub use ::mod_interface::orphan::*;
  #[ cfg( feature = "for_each" ) ]
  pub use ::for_each::orphan::*;
  #[ cfg( any( feature = "options", feature = "meta_options" ) ) ]
  pub use ::woptions::orphan::*;
  #[ cfg( any( feature = "former", feature = "meta_former" ) ) ]
  pub use ::former::orphan::*;
}

pub use protected::*;

/// Shared with parent namespace of the module
pub mod orphan
{
  pub use super::exposed::*;
}

/// Exposed namespace of the module.
pub mod exposed
{
  pub use super::prelude::*;

  #[ cfg( feature = "impls_index" ) ]
  pub use ::impls_index::exposed::*;
  #[ cfg( feature = "mod_interface" ) ]
  pub use ::mod_interface::exposed::*;
  #[ cfg( feature = "for_each" ) ]
  pub use ::for_each::exposed::*;
  #[ cfg( any( feature = "options", feature = "meta_options" ) ) ]
  pub use ::woptions::exposed::*;
  #[ cfg( any( feature = "former", feature = "meta_former" ) ) ]
  pub use ::former::exposed::*;

  #[ cfg( any( feature = "options", feature = "meta_options" ) ) ]
  pub use ::woptions as options;
  #[ cfg( any( feature = "former", feature = "meta_former" ) ) ]
  pub use ::former as former;

}

/// Prelude to use essentials: `use my_module::prelude::*`.
pub mod prelude
{
  #[ cfg( feature = "impls_index" ) ]
  pub use ::impls_index::prelude::*;
  #[ cfg( feature = "mod_interface" ) ]
  pub use ::mod_interface::prelude::*;
  #[ cfg( feature = "for_each" ) ]
  pub use ::for_each::prelude::*;
  #[ cfg( any( feature = "options", feature = "meta_options" ) ) ]
  pub use ::woptions::prelude::*;
  #[ cfg( any( feature = "former", feature = "meta_former" ) ) ]
  pub use ::former::prelude::*;
  #[ cfg( feature = "collection_make" ) ]
  pub use ::literally::*;
}