123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #![feature(macro_rules)]
- #![feature(default_type_params)]
- #![crate_name = "num"]
- #![experimental]
- #![crate_type = "rlib"]
- #![crate_type = "dylib"]
- #![license = "MIT/ASL2"]
- #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
- html_favicon_url = "http://www.rust-lang.org/favicon.ico",
- html_root_url = "http://doc.rust-lang.org/master/",
- html_playground_url = "http://play.rust-lang.org/")]
- #![allow(deprecated)] // from_str_radix
- extern crate rand;
- pub use bigint::{BigInt, BigUint};
- pub use rational::{Rational, BigRational};
- pub use complex::Complex;
- pub use integer::Integer;
- pub mod bigint;
- pub mod complex;
- pub mod integer;
- pub mod rational;
|