]> git.lizzy.rs Git - rust.git/blob - src/libcollections/lib.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[rust.git] / src / libcollections / lib.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Collection types.
12 //!
13 //! See [std::collections](../std/collections) for a detailed discussion of collections in Rust.
14
15
16 #![crate_name = "collections"]
17 #![unstable(feature = "collections")]
18 #![staged_api]
19 #![crate_type = "rlib"]
20 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
21        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
22        html_root_url = "http://doc.rust-lang.org/nightly/",
23        html_playground_url = "http://play.rust-lang.org/")]
24
25 #![feature(alloc)]
26 #![feature(box_syntax)]
27 #![feature(box_patterns)]
28 #![feature(core)]
29 #![feature(hash)]
30 #![feature(staged_api)]
31 #![feature(unboxed_closures)]
32 #![feature(unicode)]
33 #![feature(unsafe_destructor)]
34 #![feature(unsafe_no_drop_flag)]
35 #![cfg_attr(test, feature(rand, rustc_private, test))]
36 #![cfg_attr(test, allow(deprecated))] // rand
37
38 #![feature(no_std)]
39 #![no_std]
40
41 #[macro_use]
42 extern crate core;
43
44 extern crate unicode;
45 extern crate alloc;
46
47 #[cfg(test)] extern crate test;
48 #[cfg(test)] #[macro_use] extern crate std;
49 #[cfg(test)] #[macro_use] extern crate log;
50
51 pub use binary_heap::BinaryHeap;
52 pub use bitv::Bitv;
53 pub use bitv_set::BitvSet;
54 pub use btree_map::BTreeMap;
55 pub use btree_set::BTreeSet;
56 pub use dlist::DList;
57 pub use enum_set::EnumSet;
58 pub use ring_buf::RingBuf;
59 pub use string::String;
60 pub use vec::Vec;
61 pub use vec_map::VecMap;
62
63 // Needed for the vec! macro
64 pub use alloc::boxed;
65
66 #[macro_use]
67 mod macros;
68
69 #[cfg(test)] #[macro_use] mod bench;
70
71 pub mod binary_heap;
72 mod bit;
73 mod btree;
74 pub mod dlist;
75 pub mod enum_set;
76 pub mod fmt;
77 pub mod ring_buf;
78 pub mod slice;
79 pub mod str;
80 pub mod string;
81 pub mod vec;
82 pub mod vec_map;
83
84 #[unstable(feature = "collections",
85            reason = "RFC 509")]
86 pub mod bitv {
87     pub use bit::{Bitv, Iter};
88 }
89
90 #[unstable(feature = "collections",
91            reason = "RFC 509")]
92 pub mod bitv_set {
93     pub use bit::{BitvSet, Union, Intersection, Difference, SymmetricDifference};
94     pub use bit::SetIter as Iter;
95 }
96
97 #[stable(feature = "rust1", since = "1.0.0")]
98 pub mod btree_map {
99     pub use btree::map::*;
100 }
101
102 #[stable(feature = "rust1", since = "1.0.0")]
103 pub mod btree_set {
104     pub use btree::set::*;
105 }
106
107
108 // FIXME(#14344) this shouldn't be necessary
109 #[doc(hidden)]
110 pub fn fixme_14344_be_sure_to_link_to_collections() {}
111
112 #[cfg(not(test))]
113 mod std {
114     pub use core::ops;      // RangeFull
115 }
116
117 #[cfg(test)]
118 mod prelude {
119     // from core.
120     pub use core::borrow::IntoCow;
121     pub use core::clone::Clone;
122     pub use core::cmp::{PartialEq, Eq, PartialOrd, Ord};
123     pub use core::cmp::Ordering::{Less, Equal, Greater};
124     pub use core::iter::range;
125     pub use core::iter::{FromIterator, Extend, IteratorExt};
126     pub use core::iter::{Iterator, DoubleEndedIterator, RandomAccessIterator};
127     pub use core::iter::{ExactSizeIterator};
128     pub use core::marker::{Copy, Send, Sized, Sync};
129     pub use core::mem::drop;
130     pub use core::ops::{Drop, Fn, FnMut, FnOnce};
131     pub use core::option::Option;
132     pub use core::option::Option::{Some, None};
133     pub use core::ptr::PtrExt;
134     pub use core::result::Result;
135     pub use core::result::Result::{Ok, Err};
136
137     // in core and collections (may differ).
138     pub use slice::{AsSlice, SliceExt};
139     pub use str::{Str, StrExt};
140
141     // from other crates.
142     pub use alloc::boxed::Box;
143     pub use unicode::char::CharExt;
144
145     // from collections.
146     pub use slice::SliceConcatExt;
147     pub use string::{String, ToString};
148     pub use vec::Vec;
149 }
150
151 /// An endpoint of a range of keys.
152 pub enum Bound<T> {
153     /// An inclusive bound.
154     Included(T),
155     /// An exclusive bound.
156     Excluded(T),
157     /// An infinite endpoint. Indicates that there is no bound in this direction.
158     Unbounded,
159 }