about summary refs log tree commit diff
path: root/src/libcore/char/decode.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-135/+0
2019-11-26Format libcore with rustfmtDavid Tolnay-6/+4
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-11-06Have tidy ensure that we document all `unsafe` blocks in libcoreOliver Scherer-1/+2
2019-10-01Remove unneeded `fn main` blocks from docsLzu Tao-24/+26
2019-04-19libcore: deny more...Mazdak Farrokhzad-1/+1
2019-04-18libcore => 2018Taiki Endo-1/+2
2019-02-10libs: doc commentsAlexander Regueiro-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-07-30Remove unstable and deprecated APIsSimon Sapin-127/+0
2018-06-26migrate codebase to `..=` inclusive range patternsZack M. Davis-9/+9
These were stabilized in March 2018's #47813, and are the Preferred Way to Do It going forward (q.v. #51043).
2018-04-15Deprecate Read::chars and char::decode_utf8Simon Sapin-0/+11
Per FCP: * https://github.com/rust-lang/rust/issues/27802#issuecomment-377537778 * https://github.com/rust-lang/rust/issues/33906#issuecomment-377534308
2018-04-12Move char decoding iterators into a separate private module.Simon Sapin-0/+259