| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-07-27 | mv std libs to library/ | mark | -366/+0 | |
| 2020-05-29 | Add extend_one tracking issue 72631 | Josh Stone | -2/+2 | |
| 2020-05-29 | Use a canonical name for extend_reserve(additional) | Josh Stone | -1/+3 | |
| Co-authored-by: David Tolnay <dtolnay@gmail.com> | ||||
| 2020-05-29 | Add Extend::{extend_one,extend_reserve} | Josh Stone | -1/+14 | |
| This adds new optional methods on `Extend`: `extend_one` add a single element to the collection, and `extend_reserve` pre-allocates space for the predicted number of incoming elements. These are used in `Iterator` for `partition` and `unzip` as they shuffle elements one-at-a-time into their respective collections. | ||||
| 2019-12-06 | Format libcore with rustfmt (including tests and benches) | David Tolnay | -6/+6 | |
| 2019-12-03 | Tweak wording of `collect()` on bad target type | Esteban Küber | -2/+2 | |
| 2019-11-06 | Add future incompatibility lint for `array.into_iter()` | Lukas Kalbertodt | -0/+1 | |
| As we might want to add `IntoIterator` impls for arrays in the future, and since that introduces a breaking change, this lint warns and suggests using `iter()` instead (which is shorter and more explicit). | ||||
| 2019-10-20 | Remove leading :: from paths in doc examples | Mikko Rantanen | -1/+1 | |
| 2019-08-09 | Don't use associated type bounds in docs until it is stable | Ilija Tovilo | -3/+2 | |
| 2019-08-09 | Add missing #![feature(associated_type_bounds)] | Ilija Tovilo | -0/+2 | |
| 2019-08-08 | Use associated_type_bounds where applicable - closes #61738 | Ilija Tovilo | -2/+2 | |
| 2019-06-28 | doc(libcore) Fix CS | Ivan Enderlin | -1/+1 | |
| A small PR to fix a small CS typo in `iter/traits/collect.rs`. | ||||
| 2019-03-18 | Replaced self-reflective explicit types with clearer `Self` or `Self::…` ↵ | Vincent Esche | -1/+1 | |
| in stdlib docs | ||||
| 2019-01-22 | Move FromIterator, IntoIterator, Extend into own module | Clar Fon | -0/+349 | |
