2014-12-22 11:04:23 -06:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! The first version of the prelude of the standard library.
|
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2014-12-22 11:04:23 -06:00
|
|
|
|
|
|
|
// Reexported core operators
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use marker::{Copy, Send, Sized, Sync};
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use ops::{Drop, Fn, FnMut, FnOnce};
|
2015-01-06 17:57:50 -06:00
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
// Reexported functions
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use mem::drop;
|
2014-12-22 11:04:23 -06:00
|
|
|
|
|
|
|
// Reexported types and traits
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use boxed::Box;
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use clone::Clone;
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use cmp::{PartialEq, PartialOrd, Eq, Ord};
|
2015-03-18 11:14:54 -05:00
|
|
|
#[unstable(feature = "convert")]
|
|
|
|
#[doc(no_inline)] pub use convert::{AsRef, AsMut, Into, From};
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use iter::DoubleEndedIterator;
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use iter::ExactSizeIterator;
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use iter::{Iterator, IteratorExt, Extend};
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use option::Option::{self, Some, None};
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use result::Result::{self, Ok, Err};
|
2015-03-10 23:13:29 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-03-18 11:14:54 -05:00
|
|
|
#[allow(deprecated)]
|
2015-03-10 23:13:29 -05:00
|
|
|
#[doc(no_inline)] pub use slice::{SliceConcatExt, AsSlice};
|
2015-03-10 23:13:24 -05:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-03-18 11:14:54 -05:00
|
|
|
#[allow(deprecated)]
|
2015-03-10 23:13:24 -05:00
|
|
|
#[doc(no_inline)] pub use str::Str;
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use string::{String, ToString};
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-12 20:40:19 -06:00
|
|
|
#[doc(no_inline)] pub use vec::Vec;
|
2014-12-22 11:04:23 -06:00
|
|
|
|
2015-03-17 15:33:26 -05:00
|
|
|
// FIXME(#23454) should these be here?
|
2015-01-08 21:10:57 -06:00
|
|
|
#[doc(no_inline)] pub use num::wrapping::{Wrapping, WrappingOps};
|