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-03-10 23:13:16 -05:00
|
|
|
#[cfg(stage0)]
|
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 char::CharExt;
|
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-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 ptr::{PtrExt, MutPtrExt};
|
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-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-22 12:44:59 -06:00
|
|
|
#[doc(no_inline)] pub use slice::{SliceExt, SliceConcatExt, AsSlice};
|
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 str::{Str, StrExt};
|
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
|
|
|
|
|
|
|
// NB: remove when path reform lands
|
2015-01-29 16:03:36 -06:00
|
|
|
#[doc(no_inline)] pub use old_path::{Path, GenericPath};
|
2014-12-22 11:04:23 -06:00
|
|
|
// NB: remove when I/O reform lands
|
2015-01-22 18:31:00 -06:00
|
|
|
#[doc(no_inline)] pub use old_io::{Buffer, Writer, Reader, Seek, BufferPrelude};
|
2014-12-22 11:04:23 -06:00
|
|
|
// NB: remove when range syntax lands
|
2015-03-13 13:35:53 -05:00
|
|
|
#[allow(deprecated)]
|
2014-12-22 11:04:23 -06:00
|
|
|
#[doc(no_inline)] pub use iter::range;
|
2015-01-08 21:10:57 -06:00
|
|
|
|
|
|
|
#[doc(no_inline)] pub use num::wrapping::{Wrapping, WrappingOps};
|