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

/// Command aggregator.
pub mod commands_aggregator;

/// Common macroses to fill modules.
pub mod common;

/// Handle commands.
pub mod command;

/// Get input.
pub mod input;

/// Handle instruction from input.
pub mod instruction;

/// Exposed namespace of the module.
pub mod exposed
{
  pub use super::commands_aggregator::exposed::*;
  pub use super::command::exposed::*;
  pub use super::input::exposed::*;
  pub use super::instruction::exposed::*;
}

pub use exposed::*;

/// Namespace of the module to include with `use module::*`.
pub mod prelude
{
  pub use super::commands_aggregator::prelude::*;
  pub use super::command::prelude::*;
  pub use super::input::prelude::*;
  pub use super::instruction::prelude::*;
}