]> git.lizzy.rs Git - rust.git/blob - src/libcollections/lib.rs
Auto merge of #31430 - nagisa:mir-dyndrop, r=nikomatsakis
[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/index.html) for a detailed discussion of
14 //! collections in Rust.
15
16 #![crate_name = "collections"]
17 #![crate_type = "rlib"]
18 #![unstable(feature = "collections",
19             reason = "library is unlikely to be stabilized with the current \
20                       layout and name, use std::collections instead",
21             issue = "27783")]
22 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
23        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
24        html_root_url = "https://doc.rust-lang.org/nightly/",
25        html_playground_url = "https://play.rust-lang.org/",
26        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
27        test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
28
29 #![cfg_attr(test, allow(deprecated))] // rand
30 #![cfg_attr(not(test), feature(copy_from_slice))] // impl [T]
31 #![cfg_attr(not(stage0), deny(warnings))]
32
33 #![feature(alloc)]
34 #![feature(box_patterns)]
35 #![feature(box_syntax)]
36 #![feature(core_intrinsics)]
37 #![feature(decode_utf16)]
38 #![feature(dropck_parametricity)]
39 #![feature(fmt_internals)]
40 #![feature(fmt_radix)]
41 #![feature(heap_api)]
42 #![feature(iter_arith)]
43 #![feature(iter_arith)]
44 #![feature(lang_items)]
45 #![feature(nonzero)]
46 #![feature(num_bits_bytes)]
47 #![feature(pattern)]
48 #![feature(placement_in)]
49 #![feature(placement_new_protocol)]
50 #![feature(shared)]
51 #![feature(slice_bytes)]
52 #![feature(slice_patterns)]
53 #![feature(staged_api)]
54 #![feature(step_by)]
55 #![feature(str_char)]
56 #![feature(unboxed_closures)]
57 #![feature(unicode)]
58 #![feature(unique)]
59 #![feature(unsafe_no_drop_flag)]
60 #![cfg_attr(test, feature(rand, test))]
61
62 #![no_std]
63
64 extern crate rustc_unicode;
65 extern crate alloc;
66
67 #[cfg(test)]
68 #[macro_use]
69 extern crate std;
70 #[cfg(test)]
71 extern crate test;
72
73 pub use binary_heap::BinaryHeap;
74 pub use btree_map::BTreeMap;
75 pub use btree_set::BTreeSet;
76 pub use linked_list::LinkedList;
77 pub use enum_set::EnumSet;
78 pub use vec_deque::VecDeque;
79 pub use string::String;
80 pub use vec::Vec;
81
82 // Needed for the vec! macro
83 pub use alloc::boxed;
84
85 #[macro_use]
86 mod macros;
87
88 pub mod binary_heap;
89 mod btree;
90 pub mod borrow;
91 pub mod enum_set;
92 pub mod fmt;
93 pub mod linked_list;
94 pub mod range;
95 pub mod slice;
96 pub mod str;
97 pub mod string;
98 pub mod vec;
99 pub mod vec_deque;
100
101 #[stable(feature = "rust1", since = "1.0.0")]
102 pub mod btree_map {
103     #[stable(feature = "rust1", since = "1.0.0")]
104     pub use btree::map::*;
105 }
106
107 #[stable(feature = "rust1", since = "1.0.0")]
108 pub mod btree_set {
109     #[stable(feature = "rust1", since = "1.0.0")]
110     pub use btree::set::*;
111 }
112
113 #[cfg(not(test))]
114 mod std {
115     pub use core::ops;      // RangeFull
116 }
117
118 /// An endpoint of a range of keys.
119 #[unstable(feature = "collections_bound", issue = "27787")]
120 #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
121 pub enum Bound<T> {
122     /// An inclusive bound.
123     Included(T),
124     /// An exclusive bound.
125     Excluded(T),
126     /// An infinite endpoint. Indicates that there is no bound in this direction.
127     Unbounded,
128 }