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.
|
|
|
|
|
|
|
|
#![stable]
|
|
|
|
|
|
|
|
// Reexported core operators
|
2015-01-06 16:33:42 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use marker::{Copy, Send, Sized, Sync};
|
2015-01-06 17:57:50 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use ops::{Drop, Fn, FnMut, FnOnce};
|
|
|
|
|
|
|
|
// TEMPORARY
|
|
|
|
#[unstable] #[doc(no_inline)] pub use ops::{Index, IndexMut, FullRange};
|
2014-12-22 11:04:23 -06:00
|
|
|
|
|
|
|
// Reexported functions
|
|
|
|
#[stable] #[doc(no_inline)] pub use mem::drop;
|
|
|
|
|
|
|
|
// Reexported types and traits
|
|
|
|
|
|
|
|
#[stable] #[doc(no_inline)] pub use boxed::Box;
|
2014-12-29 20:58:31 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use char::CharExt;
|
2014-12-22 11:04:23 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use clone::Clone;
|
|
|
|
#[stable] #[doc(no_inline)] pub use cmp::{PartialEq, PartialOrd, Eq, Ord};
|
|
|
|
#[stable] #[doc(no_inline)] pub use iter::DoubleEndedIterator;
|
|
|
|
#[stable] #[doc(no_inline)] pub use iter::ExactSizeIterator;
|
|
|
|
#[stable] #[doc(no_inline)] pub use iter::{Iterator, IteratorExt, Extend};
|
2015-01-03 21:42:21 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use option::Option::{self, Some, None};
|
2014-12-22 11:04:23 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use ptr::{PtrExt, MutPtrExt};
|
2015-01-03 21:42:21 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use result::Result::{self, Ok, Err};
|
2014-12-22 11:04:23 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use slice::AsSlice;
|
2015-01-02 14:16:41 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use slice::{SliceExt, SliceConcatExt};
|
2014-12-22 11:04:23 -06:00
|
|
|
#[stable] #[doc(no_inline)] pub use str::{Str, StrExt};
|
|
|
|
#[stable] #[doc(no_inline)] pub use string::{String, ToString};
|
|
|
|
#[stable] #[doc(no_inline)] pub use vec::Vec;
|
|
|
|
|
|
|
|
// NB: remove when path reform lands
|
|
|
|
#[doc(no_inline)] pub use path::{Path, GenericPath};
|
|
|
|
// NB: remove when I/O reform lands
|
|
|
|
#[doc(no_inline)] pub use io::{Buffer, Writer, Reader, Seek, BufferPrelude};
|
|
|
|
// NB: remove when range syntax lands
|
|
|
|
#[doc(no_inline)] pub use iter::range;
|