xiangyun 0.2.7

Xiangyun is the crate for random with Rust
Documentation
//! Xiangyun is the crate for random with Rust  

// TODO: remove clippy before publish 
// #![cfg_attr(feature="clippy", feature(plugin))]
// #![cfg_attr(feature="clippy", plugin(clippy))]

pub mod rand;
pub mod num;
pub mod chaos;

pub use rand::{Solver, Style, JumpStyle};
pub use rand::base::{system, RAND_MAX};
pub use num::Rand;
pub use num::xfloat::XFloat;
pub use chaos::Chaos;