2013-01-18 01:28:42 -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.
|
|
|
|
|
2014-04-25 02:39:58 -05:00
|
|
|
//! # The Rust prelude
|
|
|
|
//!
|
|
|
|
//! Because `std` is required by most serious Rust software, it is
|
|
|
|
//! imported at the topmost level of every crate by default, as if the
|
|
|
|
//! first line of each crate was
|
|
|
|
//!
|
|
|
|
//! ```ignore
|
|
|
|
//! extern crate std;
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! This means that the contents of std can be accessed from any context
|
|
|
|
//! with the `std::` path prefix, as in `use std::vec`, `use std::task::spawn`,
|
|
|
|
//! etc.
|
|
|
|
//!
|
|
|
|
//! Additionally, `std` contains a `prelude` module that reexports many of the
|
|
|
|
//! most common traits, types and functions. The contents of the prelude are
|
|
|
|
//! imported into every *module* by default. Implicitly, all modules behave as if
|
|
|
|
//! they contained the following prologue:
|
|
|
|
//!
|
|
|
|
//! ```ignore
|
|
|
|
//! use std::prelude::*;
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! The prelude is primarily concerned with exporting *traits* that are so
|
|
|
|
//! pervasive that it would be obnoxious to import for every use, particularly
|
|
|
|
//! those that define methods on primitive types. It does include a few
|
|
|
|
//! particularly useful standalone functions, like `from_str`, `range`, and
|
|
|
|
//! `drop`, `spawn`, and `channel`.
|
2013-06-02 22:46:12 -05:00
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
// Reexported core operators
|
2014-03-26 18:01:11 -05:00
|
|
|
pub use kinds::{Copy, Send, Sized, Share};
|
2013-05-01 00:40:05 -05:00
|
|
|
pub use ops::{Add, Sub, Mul, Div, Rem, Neg, Not};
|
2013-01-08 21:37:25 -06:00
|
|
|
pub use ops::{BitAnd, BitOr, BitXor};
|
2014-02-26 15:02:35 -06:00
|
|
|
pub use ops::{Drop, Deref, DerefMut};
|
2013-01-08 21:37:25 -06:00
|
|
|
pub use ops::{Shl, Shr, Index};
|
|
|
|
pub use option::{Option, Some, None};
|
|
|
|
pub use result::{Result, Ok, Err};
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
// Reexported functions
|
2013-09-04 23:48:48 -05:00
|
|
|
pub use from_str::from_str;
|
2013-10-21 14:41:32 -05:00
|
|
|
pub use iter::range;
|
2014-01-31 14:35:36 -06:00
|
|
|
pub use mem::drop;
|
2013-03-28 21:12:48 -05:00
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
// Reexported types and traits
|
2013-10-11 16:20:34 -05:00
|
|
|
|
2013-12-14 08:04:22 -06:00
|
|
|
pub use ascii::{Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, IntoBytes};
|
2013-08-03 19:13:14 -05:00
|
|
|
pub use c_str::ToCStr;
|
2013-10-21 14:41:32 -05:00
|
|
|
pub use char::Char;
|
2014-03-05 00:19:14 -06:00
|
|
|
pub use clone::Clone;
|
2014-01-08 05:57:31 -06:00
|
|
|
pub use cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater, Equiv};
|
2013-07-13 21:44:36 -05:00
|
|
|
pub use container::{Container, Mutable, Map, MutableMap, Set, MutableSet};
|
2013-09-08 10:01:16 -05:00
|
|
|
pub use iter::{FromIterator, Extendable};
|
2013-12-27 05:53:41 -06:00
|
|
|
pub use iter::{Iterator, DoubleEndedIterator, RandomAccessIterator, CloneableIterator};
|
2013-09-08 10:01:16 -05:00
|
|
|
pub use iter::{OrdIterator, MutableDoubleEndedIterator, ExactSize};
|
2014-02-16 14:20:01 -06:00
|
|
|
pub use num::{Num, NumCast, CheckedAdd, CheckedSub, CheckedMul};
|
2014-04-17 21:48:48 -05:00
|
|
|
pub use num::{Signed, Unsigned};
|
2014-02-22 19:41:43 -06:00
|
|
|
pub use num::{Primitive, Int, Float, ToPrimitive, FromPrimitive};
|
2013-09-26 19:21:59 -05:00
|
|
|
pub use path::{GenericPath, Path, PosixPath, WindowsPath};
|
2013-06-03 12:50:29 -05:00
|
|
|
pub use ptr::RawPtr;
|
2013-11-13 13:17:58 -06:00
|
|
|
pub use io::{Buffer, Writer, Reader, Seek};
|
2014-02-07 18:36:59 -06:00
|
|
|
pub use str::{Str, StrVector, StrSlice, OwnedStr, IntoMaybeOwned};
|
2013-12-14 08:04:22 -06:00
|
|
|
pub use to_str::{ToStr, IntoStr};
|
2013-10-21 14:41:32 -05:00
|
|
|
pub use tuple::{Tuple1, Tuple2, Tuple3, Tuple4};
|
|
|
|
pub use tuple::{Tuple5, Tuple6, Tuple7, Tuple8};
|
|
|
|
pub use tuple::{Tuple9, Tuple10, Tuple11, Tuple12};
|
2014-03-08 17:11:52 -06:00
|
|
|
pub use slice::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVector};
|
2014-04-17 17:28:14 -05:00
|
|
|
pub use slice::{OwnedVector};
|
2014-03-08 17:11:52 -06:00
|
|
|
pub use slice::{MutableVector, MutableTotalOrdVector};
|
|
|
|
pub use slice::{Vector, VectorVector, CloneableVector, ImmutableVector};
|
2014-04-02 18:54:22 -05:00
|
|
|
pub use strbuf::StrBuf;
|
2014-03-19 16:21:12 -05:00
|
|
|
pub use vec::Vec;
|
2013-01-08 21:37:25 -06:00
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
// Reexported runtime types
|
2014-03-17 16:34:25 -05:00
|
|
|
pub use comm::{sync_channel, channel, SyncSender, Sender, Receiver};
|
2013-03-13 20:17:12 -05:00
|
|
|
pub use task::spawn;
|
2013-12-03 00:37:26 -06:00
|
|
|
|
2013-12-17 18:46:18 -06:00
|
|
|
// Reexported statics
|
|
|
|
#[cfg(not(test))]
|
|
|
|
pub use gc::GC;
|