74 lines
2.7 KiB
Rust
74 lines
2.7 KiB
Rust
// 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 standard module imported by default into all Rust modules
|
|
|
|
Many programming languages have a 'prelude': a particular subset of the
|
|
libraries that come with the language. Every program imports the prelude by
|
|
default. The prelude imports various core parts of the library that are
|
|
generally useful to many Rust programs.
|
|
|
|
*/
|
|
|
|
// Reexported core operators
|
|
pub use kinds::{Freeze, Pod, Send, Sized};
|
|
pub use ops::{Add, Sub, Mul, Div, Rem, Neg, Not};
|
|
pub use ops::{BitAnd, BitOr, BitXor};
|
|
pub use ops::{Drop};
|
|
pub use ops::{Shl, Shr, Index};
|
|
pub use option::{Option, Some, None};
|
|
pub use result::{Result, Ok, Err};
|
|
|
|
// Reexported functions
|
|
pub use from_str::from_str;
|
|
pub use iter::range;
|
|
pub use mem::drop;
|
|
|
|
// Reexported types and traits
|
|
|
|
pub use any::{Any, AnyOwnExt, AnyRefExt, AnyMutRefExt};
|
|
pub use ascii::{Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, IntoBytes};
|
|
pub use bool::Bool;
|
|
pub use c_str::ToCStr;
|
|
pub use char::Char;
|
|
pub use clone::{Clone, DeepClone};
|
|
pub use cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater, Equiv};
|
|
pub use container::{Container, Mutable, Map, MutableMap, Set, MutableSet};
|
|
pub use default::Default;
|
|
pub use from_str::FromStr;
|
|
pub use iter::{FromIterator, Extendable};
|
|
pub use iter::{Iterator, DoubleEndedIterator, RandomAccessIterator, CloneableIterator};
|
|
pub use iter::{OrdIterator, MutableDoubleEndedIterator, ExactSize};
|
|
pub use num::{Num, NumCast, CheckedAdd, CheckedSub, CheckedMul};
|
|
pub use num::{Signed, Unsigned, Round};
|
|
pub use num::{Primitive, Int, Float, ToStrRadix, ToPrimitive, FromPrimitive};
|
|
pub use path::{GenericPath, Path, PosixPath, WindowsPath};
|
|
pub use ptr::RawPtr;
|
|
pub use io::{Buffer, Writer, Reader, Seek};
|
|
pub use str::{Str, StrVector, StrSlice, OwnedStr, IntoMaybeOwned};
|
|
pub use to_str::{ToStr, IntoStr};
|
|
pub use tuple::{Tuple1, Tuple2, Tuple3, Tuple4};
|
|
pub use tuple::{Tuple5, Tuple6, Tuple7, Tuple8};
|
|
pub use tuple::{Tuple9, Tuple10, Tuple11, Tuple12};
|
|
pub use vec::{ImmutableEqVector, ImmutableTotalOrdVector, ImmutableCloneableVector};
|
|
pub use vec::{OwnedVector, OwnedCloneableVector, OwnedEqVector};
|
|
pub use vec::{MutableVector, MutableTotalOrdVector};
|
|
pub use vec::{Vector, VectorVector, CloneableVector, ImmutableVector};
|
|
|
|
// Reexported runtime types
|
|
pub use comm::{Port, Chan};
|
|
pub use task::spawn;
|
|
|
|
// Reexported statics
|
|
#[cfg(not(test))]
|
|
pub use gc::GC;
|