| Age | Commit message (Expand) | Author | Lines |
| 2014-10-07 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -1/+1 |
| 2014-10-02 | Revert "Use slice syntax instead of slice_to, etc." | Aaron Turon | -1/+1 |
| 2014-10-02 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -1/+1 |
| 2014-09-21 | Fix fallout from Vec stabilization | Alex Crichton | -2/+2 |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -5/+5 |
| 2014-09-03 | bitv: add larger tests, better benchmarks & remove dead code. | Huon Wilson | -22/+29 |
| 2014-08-26 | Use temp vars for implicit coercion to ^[T] | Nick Cameron | -1/+1 |
| 2014-08-21 | bitv: make sure benchmarks run long enough | Vinzent Steinberg | -7/+19 |
| 2014-08-21 | bitv: make benchmarks always return a value | Vinzent Steinberg | -8/+11 |
| 2014-08-19 | auto merge of #16241 : P1start/rust/doc-fixes, r=alexcrichton | bors | -50/+55 |
| 2014-08-19 | auto merge of #16582 : Gankro/rust/bitv, r=alexcrichton | bors | -26/+41 |
| 2014-08-19 | A few minor documentation fixes | P1start | -50/+55 |
| 2014-08-18 | Fixing bitvset is_disjoint, fixes #16587 | Alexis Beingessner | -1/+19 |
| 2014-08-18 | Refactor BitV internals to not use macro, reduce duplication | Alexis Beingessner | -25/+22 |
| 2014-08-18 | auto merge of #16559 : Gankro/rust/bitv, r=pcwalton | bors | -3/+114 |
| 2014-08-17 | Correct internal BitvSet 0-padding, fixes #16542 | Alexis Beingessner | -3/+114 |
| 2014-08-17 | auto merge of #16550 : kaseyc/rust/fix_documentation_error, r=alexcrichton | bors | -1/+1 |
| 2014-08-16 | Fix an error in a code sample in bitv.rs | Kasey Carrothers | -1/+1 |
| 2014-08-16 | librustc: Forbid external crates, imports, and/or items from being | Patrick Walton | -2/+1 |
| 2014-08-12 | Deprecation fallout in libcollections | Aaron Turon | -7/+7 |
| 2014-08-02 | auto merge of #16180 : jbcrail/rust/fix-comments, r=steveklabnik | bors | -1/+1 |
| 2014-08-01 | Fix misspelled comments. | Joseph Crail | -1/+1 |
| 2014-08-01 | collections: Implement FromIterator/Extendable for BitvSet | nham | -1/+27 |
| 2014-07-28 | Implement Ord for TrieMap/TrieSet/SmallIntMap/Bitv/BitvSet | nham | -1/+8 |
| 2014-07-28 | Implement PartialOrd for Bitv and BitvSet | nham | -1/+40 |
| 2014-07-23 | Remove kludgy imports from vec! macro | Brian Anderson | -1/+1 |
| 2014-07-23 | collections: Move push/pop to MutableSeq | Brian Anderson | -1/+1 |
| 2014-07-21 | Simplify and cleanup bitv examples. | Jonas Hietala | -74/+120 |
| 2014-07-21 | Describe BitPositions and TwoBitPositions. | Jonas Hietala | -0/+2 |
| 2014-07-21 | Polish bitv docs. | Jonas Hietala | -39/+44 |
| 2014-07-21 | Main bitv example: prime sieve. | Jonas Hietala | -0/+49 |
| 2014-07-21 | Move intersection above difference and symmetric_differance. | Jonas Hietala | -29/+29 |
| 2014-07-21 | Document BitvSet. | Jonas Hietala | -19/+297 |
| 2014-07-21 | Document Bitv. | Jonas Hietala | -94/+307 |
| 2014-07-21 | Group union, intersect and difference in Bitv. | Jonas Hietala | -22/+22 |
| 2014-07-21 | Place union as the first function, for consistency. | Jonas Hietala | -12/+12 |
| 2014-07-21 | Move in-place functions below their iterator variants. | Jonas Hietala | -24/+24 |
| 2014-07-10 | auto merge of #15556 : alexcrichton/rust/snapshots, r=brson | bors | -6/+1 |
| 2014-07-09 | libcollections: Use iterators instead of old-style loops. | Luqman Aden | -34/+10 |
| 2014-07-09 | Register new snapshots | Alex Crichton | -6/+1 |
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -9/+9 |
| 2014-07-07 | librustc (RFC #34): Implement the new `Index` and `IndexMut` traits. | Patrick Walton | -15/+49 |
| 2014-07-02 | collections::bitv: clean up and unit test `BitvSet::is_subset` | Andrew Poelstra | -55/+36 |
| 2014-07-02 | collections::bitv: change constructors for `Bitv` and `BitvSet` | Andrew Poelstra | -69/+81 |
| 2014-07-02 | collections::bitv: Implement several methods for `Bitv` and `BitvSet` | Andrew Poelstra | -41/+295 |
| 2014-07-02 | collections::bitv: Add documentation and #[inline]'s | Andrew Poelstra | -2/+26 |
| 2014-07-02 | collections::bitv: replace internal iterators with external ones | Andrew Poelstra | -54/+88 |
| 2014-07-02 | collections::bitv: remove some ancient interfaces | Andrew Poelstra | -24/+3 |
| 2014-07-02 | collections::bitv: correct use of Vec<T>::grow | Andrew Poelstra | -2/+11 |
| 2014-07-02 | collections::bitv: ensure correct masking behaviour | Andrew Poelstra | -83/+87 |