2014-05-01 20:06:59 -05:00
|
|
|
// Copyright 2014 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 core prelude
|
|
|
|
//!
|
2014-05-16 15:22:08 -05:00
|
|
|
//! This module is intended for users of libcore which do not link to libstd as
|
|
|
|
//! well. This module is not imported by default, but using the entire contents
|
|
|
|
//! of this module will provide all of the useful traits and types in libcore
|
|
|
|
//! that one would expect from the standard library as well.
|
|
|
|
//!
|
|
|
|
//! There is no method to automatically inject this prelude, and this prelude is
|
|
|
|
//! a subset of the standard library's prelude.
|
|
|
|
//!
|
|
|
|
//! # Example
|
|
|
|
//!
|
|
|
|
//! ```ignore
|
|
|
|
//! # fn main() {
|
|
|
|
//! #![feature(globs)]
|
|
|
|
//!
|
|
|
|
//! use core::prelude::*;
|
|
|
|
//! # }
|
|
|
|
//! ```
|
2014-05-01 20:06:59 -05:00
|
|
|
|
|
|
|
// Reexported core operators
|
2014-08-05 18:40:04 -05:00
|
|
|
pub use kinds::{Copy, Send, Sized, Sync};
|
2014-05-01 20:06:59 -05:00
|
|
|
pub use ops::{Add, Sub, Mul, Div, Rem, Neg, Not};
|
|
|
|
pub use ops::{BitAnd, BitOr, BitXor};
|
|
|
|
pub use ops::{Drop, Deref, DerefMut};
|
2014-07-03 16:32:41 -05:00
|
|
|
pub use ops::{Shl, Shr};
|
|
|
|
pub use ops::{Index, IndexMut};
|
2014-10-04 17:59:10 -05:00
|
|
|
pub use ops::{Slice, SliceMut};
|
2014-05-29 00:26:56 -05:00
|
|
|
pub use ops::{Fn, FnMut, FnOnce};
|
2014-05-01 20:06:59 -05:00
|
|
|
|
|
|
|
// Reexported functions
|
2014-11-06 11:32:37 -06:00
|
|
|
pub use iter::range;
|
2014-05-01 20:06:59 -05:00
|
|
|
pub use mem::drop;
|
2014-11-14 22:52:00 -06:00
|
|
|
pub use str::from_str;
|
2014-05-01 20:06:59 -05:00
|
|
|
|
|
|
|
// Reexported types and traits
|
|
|
|
|
|
|
|
pub use char::Char;
|
|
|
|
pub use clone::Clone;
|
2014-05-31 12:43:52 -05:00
|
|
|
pub use cmp::{PartialEq, PartialOrd, Eq, Ord};
|
2014-11-06 02:05:53 -06:00
|
|
|
pub use cmp::{Ordering, Equiv};
|
|
|
|
pub use cmp::Ordering::{Less, Equal, Greater};
|
2014-11-06 11:32:37 -06:00
|
|
|
pub use iter::{FromIterator, Extend, IteratorExt};
|
|
|
|
pub use iter::{Iterator, DoubleEndedIterator, DoubleEndedIteratorExt, RandomAccessIterator};
|
|
|
|
pub use iter::{IteratorCloneExt, CloneIteratorExt};
|
|
|
|
pub use iter::{IteratorOrdExt, MutableDoubleEndedIterator, ExactSizeIterator};
|
2014-11-12 07:02:42 -06:00
|
|
|
pub use num::{ToPrimitive, FromPrimitive};
|
2014-11-06 02:05:53 -06:00
|
|
|
pub use option::Option;
|
|
|
|
pub use option::Option::{Some, None};
|
2014-05-01 20:06:59 -05:00
|
|
|
pub use ptr::RawPtr;
|
2014-11-06 02:05:53 -06:00
|
|
|
pub use result::Result;
|
|
|
|
pub use result::Result::{Ok, Err};
|
2014-11-02 19:04:32 -06:00
|
|
|
pub use str::{Str, StrPrelude};
|
2014-05-01 20:06:59 -05:00
|
|
|
pub use tuple::{Tuple1, Tuple2, Tuple3, Tuple4};
|
|
|
|
pub use tuple::{Tuple5, Tuple6, Tuple7, Tuple8};
|
|
|
|
pub use tuple::{Tuple9, Tuple10, Tuple11, Tuple12};
|
2014-11-02 19:04:32 -06:00
|
|
|
pub use slice::{PartialEqSlicePrelude, OrdSlicePrelude};
|
|
|
|
pub use slice::{AsSlice, SlicePrelude};
|