summary refs log tree commit diff
path: root/src/libcore/char.rs
AgeCommit message (Expand)AuthorLines
2017-07-25std: Stabilize `char_escape_debug`Alex Crichton-5/+5
2017-07-10Correct some stability attributesOliver Middleton-3/+3
2017-06-20added `FromStr` Impl for `char`tinaun-1/+58
2017-04-09Reduce str transmutes, add mut versions of methods.Clar Charr-1/+2
2017-03-29Fix typo in libcore/char.rsIrfan Hudda-1/+1
2017-03-20Fix up various linkssteveklabnik-2/+2
2017-03-20Auto merge of #40281 - jimmycuadra:try-from-from-str, r=aturonbors-2/+2
2017-03-15Rename TryFrom's associated type and implement str::parse using TryFrom.Jimmy Cuadra-2/+2
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-10/+10
2017-01-29Fix a few impl stability attributesOliver Middleton-3/+3
2017-01-11Implement Display for char Escape*, To*case.Clar Charr-1/+28
2016-12-15Stabilize std::char::{encode_utf8, encode_utf16}Aaron Turon-2/+2
2016-11-30Rename 'librustc_unicode' crate to 'libstd_unicode'.Corey Farwell-1/+1
2016-11-23Use "radices" instead of "radicum"Sam Estep-1/+1
2016-09-28[breaking-change] std: change `encode_utf{8,16}()` to take a buffer and retur...tormol-119/+51
2016-09-18Add missing Eq implementationsGuillaume Gomez-1/+1
2016-08-29Implement TryFrom<u32> for charSimon Sapin-6/+29
2016-08-29Implement From<char> for u32, and From<u8> for charSimon Sapin-0/+34
2016-08-25Auto merge of #35906 - jseyfried:local_prelude, r=eddybbors-2/+0
2016-08-25Rollup merge of #35947 - SimonSapin:decodeutf8-error-handling, r=alexcrichtonManish Goregaokar-13/+69
2016-08-24Use `#[prelude_import]` in `libcore`.Jeffrey Seyfried-2/+0
2016-08-23Yield Err in char::decode_utf8 per Unicode, like String::from_utf8_lossySimon Sapin-13/+69
2016-08-18Add a FusedIterator trait.Steven Allen-0/+18
2016-07-28Rename `char::escape` to `char::escape_debug` and add tracking issueTobias Bucher-12/+12
2016-07-26Restore `char::escape_default` and add `char::escape` insteadTobias Bucher-1/+37
2016-07-23Escape fewer Unicode codepoints in `Debug` impl of `str`Tobias Bucher-2/+3
2016-07-13add core::char::DecodeUtf8M Farkas-Dyck-0/+47
2016-05-26Explain the order of the enumeration itemsAndrea Canciani-0/+3
2016-05-26Move length computation to `ExactSizeIterator` implsAndrea Canciani-24/+36
2016-05-26Implement `count` for `EscapeDefault` and `EscapeUnicode`Andrea Canciani-6/+7
2016-05-26`EscapeUnicode` and `EscapeDefault` are `ExactSizeIterator`sAndrea Canciani-0/+6
2016-05-25Auto merge of #33699 - alexcrichton:stabilize-1.10, r=aturonbors-4/+2
2016-05-24std: Stabilize APIs for the 1.10 releaseAlex Crichton-4/+2
2016-04-20Implement `last` for `EscapeUnicode`Andrea Canciani-0/+12
2016-04-19Auto merge of #31253 - ranma42:improve-unicode-iter-offset, r=brsonbors-20/+32
2016-03-22std: Change `encode_utf{8,16}` to return iteratorsAlex Crichton-70/+119
2016-03-20libcore: add Debug implementations to most missing typesSean McArthur-4/+4
2016-03-11core: Make a new tracking issue for prelude traitsAlex Crichton-1/+1
2016-03-08doc: Fix a bunch of broken linksAlex Crichton-9/+9
2016-01-28Fix `make tidy` and name what is being computedAndrea Canciani-1/+2
2016-01-28Improve naming and explanationsAndrea Canciani-7/+14
2016-01-28Improve computation of `EscapeUnicode` offset fieldAndrea Canciani-5/+7
2016-01-28Unify computation of length in `EscapeUnicode`Andrea Canciani-20/+22
2016-01-16Auto merge of #30624 - Ticki:specialization, r=alexcrichtonbors-0/+45
2016-01-16Make style more uniform, add tests for specialization of .last(), move tests ...Ticki-73/+28
2016-01-16Overide methods in iterator implementation for EscapeDefault, see #24214Ticki-0/+90
2016-01-05Fix the spelling of "hexadecimal"Matt Kraai-1/+1
2015-12-26Fix links in char docsFlorian Hartwig-11/+11
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-3/+9
2015-11-25Improve docs for std::charSteve Klabnik-16/+142