| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-11-26 | Format libcore with rustfmt | David Tolnay | -1/+1 | |
| This commit applies rustfmt with default settings to files in src/libcore *that are not involved in any currently open PR* to minimize merge conflicts. The list of files involved in open PRs was determined by querying GitHub's GraphQL API with this script: https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8 With the list of files from the script in `outstanding_files`, the relevant commands were: $ find src/libcore -name '*.rs' | xargs rustfmt --edition=2018 $ rg libcore outstanding_files | xargs git checkout -- Repeating this process several months apart should get us coverage of most of the rest of libcore. | ||||
| 2019-04-18 | libcore => 2018 | Taiki Endo | -1/+1 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2017-10-18 | impl FromIterator<()> for () | Josh Stone | -0/+31 | |
| This just collapses all unit items from an iterator into one. This is more useful when combined with higher-level abstractions, like collecting to a `Result<(), E>` where you only care about errors: ```rust use std::io::*; data = vec![1, 2, 3, 4, 5]; let res: Result<()> = data.iter() .map(|x| writeln!(stdout(), "{}", x)) .collect(); assert!(res.is_ok()); ``` | ||||
| 2014-05-15 | core: Remove the unit module | Brian Anderson | -45/+0 | |
| 2014-05-07 | core: Inherit the unit module | Alex Crichton | -0/+45 | |
| 2012-12-03 | core: rename unit to nil. Close #4080. | Graydon Hoare | -36/+0 | |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 | |
| 2012-11-30 | core: Make core.rc more readable. Cleanup | Brian Anderson | -0/+2 | |
| 2012-11-28 | Register snapshots | Brian Anderson | -24/+0 | |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -0/+24 | |
| 2012-09-25 | core: Mark more mods as demoded | Brian Anderson | -0/+4 | |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -16/+0 | |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+16 | |
| 2012-09-19 | core: Clean up crate docs and give all mods a brief description | Brian Anderson | -3/+5 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-08-30 | libcore: Add missing unit.rs | Patrick Walton | -0/+17 | |
