]> git.lizzy.rs Git - rust.git/blob - src/librustc_const_math/lib.rs
Rollup merge of #42024 - citizen428:docs/update-exitstatus, r=steveklabnik
[rust.git] / src / librustc_const_math / lib.rs
1 // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Rusty Mathematics
12 //!
13 //! # Note
14 //!
15 //! This API is completely unstable and subject to change.
16
17 #![crate_name = "rustc_const_math"]
18 #![crate_type = "dylib"]
19 #![crate_type = "rlib"]
20 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
21       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
22       html_root_url = "https://doc.rust-lang.org/nightly/")]
23 #![deny(warnings)]
24
25 #![feature(const_fn)]
26 #![feature(i128)]
27 #![feature(i128_type)]
28
29 #![cfg_attr(stage0, unstable(feature = "rustc_private", issue = "27812"))]
30 #![cfg_attr(stage0, feature(rustc_private))]
31 #![cfg_attr(stage0, feature(staged_api))]
32
33 extern crate syntax;
34
35 extern crate serialize as rustc_serialize; // used by deriving
36
37 mod float;
38 mod int;
39 mod us;
40 mod is;
41 mod err;
42
43 pub use float::*;
44 pub use int::*;
45 pub use us::*;
46 pub use is::*;
47 pub use err::{ConstMathErr, Op};