]>
git.proxmox.com Git - rustc.git/blob - 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.
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.
13 //! See [std::collections](../std/collections/index.html) for a detailed discussion of
14 //! collections in Rust.
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",
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
))))]
29 #![cfg_attr(test, allow(deprecated))] // rand
30 #![cfg_attr(not(stage0), deny(warnings))]
33 #![feature(allow_internal_unstable)]
34 #![feature(box_patterns)]
35 #![feature(box_syntax)]
36 #![feature(core_intrinsics)]
37 #![feature(dropck_parametricity)]
38 #![feature(fmt_internals)]
40 #![feature(inclusive_range)]
41 #![feature(iter_arith)]
42 #![feature(lang_items)]
45 #![feature(placement_in)]
46 #![feature(placement_new_protocol)]
48 #![feature(slice_patterns)]
49 #![feature(specialization)]
50 #![feature(staged_api)]
53 #![feature(unboxed_closures)]
56 #![feature(unsafe_no_drop_flag)]
57 #![cfg_attr(test, feature(rand, test))]
61 extern crate rustc_unicode
;
71 pub use binary_heap
::BinaryHeap
;
73 pub use btree_map
::BTreeMap
;
75 pub use btree_set
::BTreeSet
;
77 pub use linked_list
::LinkedList
;
79 pub use enum_set
::EnumSet
;
81 pub use vec_deque
::VecDeque
;
83 pub use string
::String
;
87 // Needed for the vec! macro
106 #[stable(feature = "rust1", since = "1.0.0")]
108 #[stable(feature = "rust1", since = "1.0.0")]
109 pub use btree
::map
::*;
112 #[stable(feature = "rust1", since = "1.0.0")]
114 #[stable(feature = "rust1", since = "1.0.0")]
115 pub use btree
::set
::*;
120 pub use core
::ops
; // RangeFull
123 /// An endpoint of a range of keys.
124 #[unstable(feature = "collections_bound", issue = "27787")]
125 #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
127 /// An inclusive bound.
129 /// An exclusive bound.
131 /// An infinite endpoint. Indicates that there is no bound in this direction.