about summary refs log tree commit diff
path: root/src/libcore/char/convert.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-300/+0
2020-06-30Deny unsafe ops in unsafe fns, part 6LeSeulArtichaut-2/+0
And final part!!!
2020-06-30Deny unsafe ops in unsafe fns, part 1LeSeulArtichaut-1/+4
2020-06-13Adjusted some doctests in libcore to use `should_panic`.Jake Degen-8/+3
Previously, some doctests were spawning new threads and joining them to indicate that a particular call should panic; this hurt readability, so the tests have been adjusted to simply call the method and use the `should_panic` marker.
2020-05-28from_u32_unchecked: check validity when debug assertions are enabledRalf Jung-2/+2
2019-12-21Require issue = "none" over issue = "0" in unstable attributesRoss MacArthur-1/+1
2019-11-26Format libcore with rustfmtDavid Tolnay-21/+10
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-0/+1
2019-10-01Remove unneeded `fn main` blocks from docsLzu Tao-10/+6
2019-06-14Change `...` to `..=` where applicableAaron Kutch-1/+1
2019-04-19libcore: deny more...Mazdak Farrokhzad-3/+2
2019-04-18libcore => 2018Taiki Endo-4/+5
2019-02-13Stabilize TryFrom and TryIntoSimon Sapin-3/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-21update various stdlib docsSteve Klabnik-4/+2
2018-09-25Add examples for docSon-4/+22
2018-08-20Add doc for impl From in char_convertSon-0/+8
2018-04-20Revert "Stabilize the TryFrom and TryInto traits"Felix S. Klock II-3/+3
This reverts commit e53a2a72743810e05f58c61c9d8a4c89b712ad2e.
2018-04-12Move char conversions into a separate private module.Simon Sapin-0/+304