about summary refs log tree commit diff
path: root/src/libcollections/string.rs
AgeCommit message (Expand)AuthorLines
2017-04-14refactor: add reason stringEvgeny Safronov-1/+1
2017-04-14fix: add feature to doc testsEvgeny Safronov-0/+1
2017-04-14Add `as_bytes()` for `FromUtf8Error`.Evgeny Safronov-0/+19
2017-04-09Reduce str transmutes, add mut versions of methods.Clar Charr-2/+2
2017-03-17Rollup merge of #40456 - frewsxcv:frewsxcv-docs-function-parens, r=GuillaumeG...Corey Farwell-47/+47
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-47/+47
2017-03-10Add From<Box<..>> implementations.Clar Charr-0/+16
2017-03-05Issue #39688 - Help people find String::as_bytes() for UTF-8 r? @steveklabnikJoshua Horwitz-0/+8
2017-03-03Auto merge of #40189 - SimonSapin:one-width, r=alexcrichtonbors-2/+2
2017-03-02Rollup merge of #40117 - SimonSapin:to-err-is-for-the-formatter, r=alexcrichtonCorey Farwell-1/+8
2017-03-01Panic on errors in `format!` or `<T: Display>::to_string`Simon Sapin-1/+8
2017-03-01Only keep one copy of the UTF8_CHAR_WIDTH table.Simon Sapin-2/+2
2017-02-28Rollup merge of #40028 - withoutboats:string_from_iter, r=alexcrichtonCorey Farwell-0/+9
2017-02-26Auto merge of #39738 - keeperofdakeys:vec-docs, r=GuillaumeGomezbors-0/+3
2017-02-24Rollup merge of #39886 - mbrubeck:doc-edit, r=steveklabnikGuillaume Gomez-0/+42
2017-02-22impl FromIter<&char> for StringWithout Boats-0/+9
2017-02-16Fixup String::split_off documentationSteven Allen-9/+9
2017-02-16Additional docs for Vec, String, and slice trait implsMatt Brubeck-0/+42
2017-02-14Add notes about capacity effects to Vec::truncate()Josh-0/+3
2017-02-07Auto merge of #39002 - GuillaumeGomez:debug_libcollections, r=aturonbors-0/+7
2017-02-05Replace PlaceBack Debug implementation with deriveGuillaume Gomez-2/+2
2017-02-01std: Add ToString trait specialization for Cow<'a, str> and Stringf001-0/+16
2017-01-25std: Stabilize APIs for the 1.16.0 releaseAlex Crichton-7/+2
2017-01-20Add Debug implementations for libcollection structsGuillaume Gomez-0/+7
2017-01-14have RangeArgument return a Bound<&T> from each of its methodsdjzin-2/+11
2016-12-20run rustfmt on libcollections folderSrinivas Reddy Thatiparthy-7/+3
2016-12-12Auto merge of #38049 - frewsxcv:libunicode, r=alexcrichtonbors-2/+2
2016-12-03Remove redundant assertion near is_char_boundary.Clar Charr-4/+0
2016-11-30Add String::split_off.Clar Charr-0/+33
2016-11-30Rename 'librustc_unicode' crate to 'libstd_unicode'.Corey Farwell-2/+2
2016-11-04Change Into<Vec<u8>> for String and Into<OsString> for PathBuf to From implsleonardo.yvens-4/+4
2016-10-22Auto merge of #37327 - aidanhs:aphs-bytes-iter-doc, r=alexcrichtonbors-2/+2
2016-10-21`as_bytes` is not the iterator, `bytes` isAidan Hobson Sayers-2/+2
2016-10-21Implement `From<Cow<str>> for String` and `From<Cow<[T]>> for Vec<T>`.Simon Sapin-0/+7
2016-10-10Add missing urls on String moduleGuillaume Gomez-3/+4
2016-09-30Rollup merge of #36623 - GuillaumeGomez:doc_typos, r=steveklabnikSteve Klabnik-3/+3
2016-09-28[breaking-change] std: change `encode_utf{8,16}()` to take a buffer and retur...tormol-3/+4
2016-09-24Fix some typos and improve doc comments styleGuillaume Gomez-3/+3
2016-09-23Revert "implement `From<Vec<char>>` and `From<&'a [char]>` for `String`"Brian Anderson-20/+0
2016-09-11Documentation of what does for each typeathulappadan-0/+1
2016-08-23Auto merge of #35656 - Stebalien:fused, r=alexcrichtonbors-1/+4
2016-08-21Fix "Furthermore" Typo in String DocsChristopher Serr-1/+1
2016-08-18Add a FusedIterator trait.Steven Allen-1/+4
2016-08-14Rollup merge of #35598 - tshepang:needless-binding, r=steveklabnikEduard-Mihai Burtescu-2/+1
2016-08-14Rollup merge of #35597 - tshepang:it-is-a-slice, r=steveklabnikEduard-Mihai Burtescu-1/+1
2016-08-11string: remove needless bindingTshepang Lekhonkhobe-2/+1
2016-08-11doc: a value of type `&str` is called a "string slice"Tshepang Lekhonkhobe-1/+1
2016-08-09Add tracking issue for `String::insert_str`Murarth-1/+1
2016-08-07Add `FromIterator` implementations for `Cow<str>`Alexander Altman-0/+21
2016-07-27implement `From<Vec<char>>` and `From<&'a [char]>` for `String`Paul Woolcock-0/+20