about summary refs log tree commit diff
path: root/src/libcore/char.rs
AgeCommit message (Expand)AuthorLines
2018-04-12Move the core::char module to its own directorySimon Sapin-926/+0
2018-04-12Deprecate the std_unicode crateSimon Sapin-1/+1
2018-04-12Move char::REPLACEMENT_CHARACTER to libcoreSimon Sapin-0/+8
2018-03-31Auto merge of #49201 - Phlosioneer:add-trivial-size-hints, r=SimonSapinbors-0/+10
2018-03-26Stabilize the TryFrom and TryInto traitsSimon Sapin-3/+3
2018-03-25Fix incorrect copy-pasted codePhlosioneer-3/+3
2018-03-24Fix syntax errorPhlosioneer-1/+1
2018-03-24Fix incorrect lower boundsPhlosioneer-1/+6
2018-03-20Implement some trivial size_hints for various iteratorsPhlosioneer-0/+5
2018-03-06Rollup merge of #47463 - bluss:fused-iterator, r=alexcrichtonkennytm-4/+4
2018-03-03core: Update stability attributes for FusedIteratorUlrik Sverdrup-4/+4
2018-03-03core: Stabilize FusedIteratorUlrik Sverdrup-4/+4
2018-03-01Fix spelling s/casted/cast/Lukas Lueg-2/+2
2018-01-26derive PartialEq and Eq for `ParseCharError`tinaun-1/+1
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