about summary refs log tree commit diff
path: root/src/libcore/str
AgeCommit message (Expand)AuthorLines
2016-01-16std: Stabilize APIs for the 1.7 releaseAlex Crichton-7/+7
2016-01-14UTF-8 validation: Add missing if conditional for short inputUlrik Sverdrup-13/+16
2016-01-12Add fast path for ASCII in UTF-8 validationUlrik Sverdrup-27/+57
2015-12-11Add missing links to str docsOri Avtalion-14/+42
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-49/+67
2015-11-23Auto merge of #29952 - petrochenkov:depr, r=brsonbors-1/+1
2015-11-23Mark slice_error_fail as a cold pathManish Goregaokar-0/+1
2015-11-20Rename #[deprecated] to #[rustc_deprecated]Vadim Petrochenkov-1/+1
2015-11-20Add information about str::parse() in FromStr docsDevon Hollowood-0/+7
2015-11-18Add missing annotations and some testsVadim Petrochenkov-0/+3
2015-11-12libcore: deny warnings in doctestsKevin Butler-2/+0
2015-11-06Remove stability annotations from trait impl itemsVadim Petrochenkov-1/+0
2015-10-25Auto merge of #29254 - alexcrichton:stabilize-1.5, r=brsonbors-5/+2
2015-10-25std: Stabilize library APIs for 1.5Alex Crichton-5/+2
2015-10-23Unsafety -> Safety in doc headingsSteve Klabnik-1/+1
2015-10-13Correct spelling in docsAndrew Paseltiner-1/+1
2015-10-10Trivial typo fix: from_utrf8 should be from_utf8Andrew Chin-1/+1
2015-10-08typos: fix a grabbag of typos all over the placeCristi Cobzarenco-1/+1
2015-10-02Improve documentation for the from_utf8 familySteve Klabnik-5/+119
2015-09-30Add some docs for FromString::from_strSteve Klabnik-0/+15
2015-09-26Auto merge of #28632 - alexcrichton:update-match-indices, r=Kimundibors-5/+9
2015-09-25std: Update MatchIndices to return a subsliceAlex Crichton-5/+9
2015-09-24Utf8Error::valid_up_to: make documented semantics more precise/usefulSimon Sapin-2/+2
2015-09-13Auto merge of #28339 - alexcrichton:stabilize-1.4, r=aturonbors-2/+2
2015-09-11std: Stabilize/deprecate features for 1.4Alex Crichton-2/+2
2015-09-10Optimize string comparison by using memcmpErick Tryzelaar-15/+20
2015-09-08some more clippy-based improvementsAndre Bogus-3/+3
2015-09-04Auto merge of #28119 - nagisa:bytesderef, r=alexcrichtonbors-30/+3
2015-09-03std: Account for CRLF in {str, BufRead}::linesAlex Crichton-4/+10
2015-09-03Elide lifetimes in libcoreManish Goregaokar-11/+11
2015-08-31Change explicit BytesDeref impl into Cloned iteratorSimonas Kazlauskas-30/+3
2015-08-31Auto merge of #28101 - ijks:24214-str-bytes, r=alexcrichtonbors-0/+15
2015-08-30Add overrides to iterator methods for `str::Bytes`Daan Rijks-0/+15
2015-08-28Add .as_str() to str::Chars and str::CharIndices. See #27775.Simon Sapin-0/+24
2015-08-18Auto merge of #27474 - bluss:twoway-reverse, r=brsonbors-64/+193
2015-08-16StrSearcher: Additional comments and small code movesUlrik Sverdrup-19/+27
2015-08-15core: Fill out issues for unstable featuresAlex Crichton-6/+11
2015-08-12Fallout in libs -- misc missing bounds uncovered by WF checks.Niko Matsakis-1/+2
2015-08-09Make `str::as_bytes_mut` privateTobias Bucher-6/+0
2015-08-09Replace many uses of `mem::transmute` with more specific functionsTobias Bucher-8/+14
2015-08-07StrSearcher: Improve inner loop in TwoWaySearcher::next, next_backUlrik Sverdrup-10/+22
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+2
2015-08-02StrSearcher: Implement the full two way algorithm in reverse for rfindUlrik Sverdrup-49/+158
2015-07-29std: Remove the curious inner moduleAlex Crichton-1/+1
2015-07-21Inline eq_slice_() into eq_slice()Björn Steinbrink-12/+3
2015-07-21Auto merge of #27168 - brson:stdprim, r=steveklabnikbors-1/+0
2015-07-20std: Create separate docs for the primitivesBrian Anderson-1/+0
2015-07-18Fix doc comment parsing in macros.Lee Jeffery-10/+10
2015-07-13Add str::split_at_mutSimon Sapin-0/+15
2015-07-13Implement IndexMut for String and str.Simon Sapin-0/+64