-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved collections from libextra into libcollections
- Loading branch information
1 parent
87fe3cc
commit d81bb44
Showing
36 changed files
with
117 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// 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 <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. | ||
|
||
/*! | ||
* Collection types. | ||
*/ | ||
|
||
#[crate_id = "collections#0.10-pre"]; | ||
#[crate_type = "rlib"]; | ||
#[crate_type = "dylib"]; | ||
#[license = "MIT/ASL2"]; | ||
|
||
#[feature(macro_rules, managed_boxes)]; | ||
|
||
#[cfg(test)] extern mod extra; | ||
|
||
extern mod serialize; | ||
|
||
pub use bitv::Bitv; | ||
pub use btree::BTree; | ||
pub use deque::Deque; | ||
pub use dlist::DList; | ||
pub use list::List; | ||
pub use lru_cache::LruCache; | ||
pub use priority_queue::PriorityQueue; | ||
pub use ringbuf::RingBuf; | ||
pub use smallintmap::SmallIntMap; | ||
pub use treemap::{TreeMap, TreeSet}; | ||
|
||
pub mod bitv; | ||
pub mod btree; | ||
pub mod deque; | ||
pub mod dlist; | ||
pub mod list; | ||
pub mod lru_cache; | ||
pub mod priority_queue; | ||
pub mod ringbuf; | ||
pub mod smallintmap; | ||
pub mod treemap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
d81bb44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
saw approval from alexcrichton
at https://github.com/HeroesGrave/rust/commit/d81bb441dae3bdb6760dcb0dc0fca2aceb561d24
d81bb44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merging HeroesGrave/rust/libcollection = d81bb44 into auto
d81bb44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HeroesGrave/rust/libcollection = d81bb44 merged ok, testing candidate = 21b856d
d81bb44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/4074
success: http://buildbot.rust-lang.org/builders/auto-mac-32-nopt-c/builds/1916
success: http://buildbot.rust-lang.org/builders/auto-mac-32-nopt-t/builds/1918
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/4074
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/3174
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/3180
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/4089
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/3177
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/3183
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/4091
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/3177
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/3182
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android/builds/3251
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/1029
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/4082
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/3183
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/3188
success: http://buildbot.rust-lang.org/builders/auto-bsd-64-opt/builds/3851
d81bb44
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fast-forwarding master to auto = 21b856d