// Copyright 2013-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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! Collection types. //! //! See [std::collections](../std/collections) for a detailed discussion of collections in Rust. #![crate_name = "collections"] #![unstable(feature = "collections")] #![staged_api] #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(alloc)] #![feature(box_syntax)] #![feature(core)] #![feature(hash)] #![feature(staged_api)] #![feature(unboxed_closures)] #![feature(unicode)] #![feature(unsafe_destructor, slicing_syntax)] #![cfg_attr(test, feature(test))] #![cfg_attr(test, allow(deprecated))] // rand #![no_std] #[macro_use] extern crate core; extern crate unicode; extern crate alloc; #[cfg(test)] extern crate test; #[cfg(test)] #[macro_use] extern crate std; #[cfg(test)] #[macro_use] extern crate log; pub use binary_heap::BinaryHeap; pub use bitv::Bitv; pub use bitv_set::BitvSet; pub use btree_map::BTreeMap; pub use btree_set::BTreeSet; pub use dlist::DList; pub use enum_set::EnumSet; pub use ring_buf::RingBuf; pub use string::String; pub use vec::Vec; pub use vec_map::VecMap; // Needed for the vec! macro pub use alloc::boxed; #[macro_use] mod macros; pub mod binary_heap; mod bit; mod btree; pub mod dlist; pub mod enum_set; pub mod ring_buf; pub mod slice; pub mod str; pub mod string; pub mod vec; pub mod vec_map; #[unstable(feature = "collections", reason = "RFC 509")] pub mod bitv { pub use bit::{Bitv, Iter}; } #[unstable(feature = "collections", reason = "RFC 509")] pub mod bitv_set { pub use bit::{BitvSet, Union, Intersection, Difference, SymmetricDifference}; pub use bit::SetIter as Iter; } #[stable(feature = "rust1", since = "1.0.0")] pub mod btree_map { pub use btree::map::*; } #[stable(feature = "rust1", since = "1.0.0")] pub mod btree_set { pub use btree::set::*; } #[cfg(test)] mod bench; // FIXME(#14344) this shouldn't be necessary #[doc(hidden)] pub fn fixme_14344_be_sure_to_link_to_collections() {} #[cfg(not(test))] mod std { pub use core::fmt; // necessary for panic!() pub use core::option; // necessary for panic!() pub use core::clone; // derive(Clone) pub use core::cmp; // derive(Eq, Ord, etc.) pub use core::marker; // derive(Copy) pub use core::hash; // derive(Hash) pub use core::ops; // RangeFull // for-loops pub use core::iter; } #[cfg(test)] mod prelude { // from core. pub use core::borrow::IntoCow; pub use core::clone::Clone; pub use core::cmp::{PartialEq, Eq, PartialOrd, Ord}; pub use core::cmp::Ordering::{Less, Equal, Greater}; pub use core::iter::range; pub use core::iter::{FromIterator, Extend, IteratorExt}; pub use core::iter::{Iterator, DoubleEndedIterator, RandomAccessIterator}; pub use core::iter::{ExactSizeIterator}; pub use core::marker::{Copy, Send, Sized, Sync}; pub use core::mem::drop; pub use core::ops::{Drop, Fn, FnMut, FnOnce}; pub use core::option::Option; pub use core::option::Option::{Some, None}; pub use core::ptr::PtrExt; pub use core::result::Result; pub use core::result::Result::{Ok, Err}; // in core and collections (may differ). pub use slice::{AsSlice, SliceExt}; pub use str::{Str, StrExt}; // from other crates. pub use alloc::boxed::Box; pub use unicode::char::CharExt; // from collections. pub use slice::SliceConcatExt; pub use string::{String, ToString}; pub use vec::Vec; } /// An endpoint of a range of keys. pub enum Bound { /// An inclusive bound. Included(T), /// An exclusive bound. Excluded(T), /// An infinite endpoint. Indicates that there is no bound in this direction. Unbounded, }