| Age | Commit message (Expand) | Author | Lines |
| 2016-09-23 | Revert "implement `From<Vec<char>>` and `From<&'a [char]>` for `String`" | Brian Anderson | -20/+0 |
| 2016-09-23 | Minor `VecDeque` doc examples cleanup. | Corey Farwell | -5/+5 |
| 2016-09-20 | Minor correction in `sort_by_key` doc comment | Nick Platt | -1/+1 |
| 2016-09-14 | Auto merge of #36347 - knight42:str-replacen, r=alexcrichton | bors | -0/+43 |
| 2016-09-14 | Rollup merge of #36396 - athulappadan:Default-docs, r=bluss | Guillaume Gomez | -0/+8 |
| 2016-09-13 | Doc correction: btree | athulappadan | -1/+1 |
| 2016-09-13 | Implement std::str::replacen | knight42 | -0/+43 |
| 2016-09-11 | Documentation for default types modified | athulappadan | -3/+3 |
| 2016-09-11 | Documentation of what does for each type | athulappadan | -0/+8 |
| 2016-09-09 | Work around pointer aliasing issue in Vec::extend_from_slice, extend_with_ele... | Ulrik Sverdrup | -13/+55 |
| 2016-09-06 | Rollup merge of #36243 - GuillaumeGomez:hash_map_links, r=steveklabnik | Jonathan Turner | -4/+8 |
| 2016-09-03 | Add missing urls | Guillaume Gomez | -4/+8 |
| 2016-09-03 | Auto merge of #36072 - arthurprs:binary_heap_opt, r=Aatch | bors | -20/+23 |
| 2016-08-30 | Rollup merge of #35862 - Stebalien:fmt-docs, r=steveklabnik | Guillaume Gomez | -3/+9 |
| 2016-08-29 | Remove BinaryHeap bounds checking | arthurprs | -20/+23 |
| 2016-08-25 | Auto merge of #35906 - jseyfried:local_prelude, r=eddyb | bors | -15/+2 |
| 2016-08-24 | Remove needless imports in `libcollections`. | Jeffrey Seyfried | -15/+2 |
| 2016-08-24 | Remove drop flags from structs and enums implementing Drop. | Eduard Burtescu | -7/+5 |
| 2016-08-23 | Rust has type aliases, not typedefs. | Steven Allen | -9/+9 |
| 2016-08-23 | Auto merge of #35656 - Stebalien:fused, r=alexcrichton | bors | -8/+100 |
| 2016-08-21 | Fix "Furthermore" Typo in String Docs | Christopher Serr | -1/+1 |
| 2016-08-20 | Note that formatters should not return spurious errors. | Steven Allen | -2/+8 |
| 2016-08-20 | Correct formatting docs: fmt::Result != io::Result<()> | Steven Allen | -3/+3 |
| 2016-08-20 | Rollup merge of #35234 - nrc:rustdoc-macros, r=steveklabnik | Jonathan Turner | -1/+1 |
| 2016-08-19 | std: Stabilize APIs for the 1.12 release | Alex Crichton | -22/+18 |
| 2016-08-18 | Add a FusedIterator trait. | Steven Allen | -8/+100 |
| 2016-08-18 | Fix links | Nick Cameron | -1/+1 |
| 2016-08-17 | Auto merge of #35747 - jonathandturner:rollup, r=jonathandturner | bors | -0/+9 |
| 2016-08-17 | Auto merge of #35733 - apasel422:issue-35721, r=alexcrichton | bors | -6/+9 |
| 2016-08-17 | Rollup merge of #35707 - frewsxcv:vec-into-iter-debug, r=alexcrichton | Jonathan Turner | -0/+9 |
| 2016-08-16 | Make `vec::IntoIter` covariant again | Andrew Paseltiner | -6/+9 |
| 2016-08-16 | Auto merge of #35354 - tomgarcia:covariant-drain, r=alexcrichton | bors | -3/+4 |
| 2016-08-15 | Implement `Debug` for `std::vec::IntoIter`. | Corey Farwell | -0/+9 |
| 2016-08-14 | Rollup merge of #35598 - tshepang:needless-binding, r=steveklabnik | Eduard-Mihai Burtescu | -2/+1 |
| 2016-08-14 | Rollup merge of #35597 - tshepang:it-is-a-slice, r=steveklabnik | Eduard-Mihai Burtescu | -1/+1 |
| 2016-08-14 | Rollup merge of #35447 - frewsxcv:vec-into-iter-as-slice, r=alexcrichton | Eduard-Mihai Burtescu | -12/+51 |
| 2016-08-11 | Introduce `as_mut_slice` method on `std::vec::IntoIter` struct. | Corey Farwell | -9/+29 |
| 2016-08-11 | Introduce `as_slice` method on `std::vec::IntoIter` struct. | Corey Farwell | -3/+22 |
| 2016-08-11 | string: remove needless binding | Tshepang Lekhonkhobe | -2/+1 |
| 2016-08-11 | doc: a value of type `&str` is called a "string slice" | Tshepang Lekhonkhobe | -1/+1 |
| 2016-08-09 | Add tracking issue for `String::insert_str` | Murarth | -1/+1 |
| 2016-08-08 | Auto merge of #34762 - creativcoder:slice-ext, r=alexcrichton | bors | -4/+4 |
| 2016-08-09 | extend lifetime on binary_search_by_key of SliceExt trait | Rahul Sharma | -4/+4 |
| 2016-08-07 | Add `FromIterator` implementations for `Cow<str>` | Alexander Altman | -0/+21 |
| 2016-08-05 | Rollup merge of #35181 - GuillaumeGomez:vec_doc, r=steveklabnik | Guillaume Gomez | -0/+19 |
| 2016-08-04 | Made vec_deque::Drain, hash_map::Drain, and hash_set::Drain covariant | Thomas Garcia | -3/+4 |
| 2016-08-02 | Add doc example for Vec | Guillaume Gomez | -0/+19 |
| 2016-08-02 | Add doc examples for `range::RangeArgument::{start,end}`. | Corey Farwell | -0/+32 |
| 2016-08-01 | Auto merge of #35054 - pwoolcoc:stringfromchars, r=brson | bors | -0/+20 |
| 2016-08-02 | Rollup merge of #35134 - frewsxcv:slice-chunks, r=GuillaumeGomez | Seo Sanghyeon | -9/+7 |