about summary refs log tree commit diff
path: root/library/core/src/str/iter.rs
AgeCommit message (Expand)AuthorLines
2023-03-23Rollup merge of #100311 - xfix:lines-fix-handling-of-bare-cr, r=ChrisDentonDylan DPC-2/+2
2023-01-14Use associated items of `char` instead of freestanding items in `core::char`Lukas Markeffsky-5/+5
2022-12-16Replace `Split*::as_str` with `remainder`Maybe Waffle-77/+93
2022-12-16SplitInternal: always set `finished` in `get_end`Maybe Waffle-7/+8
2022-10-06Fix handling of trailing bare CR in str::linesKonrad Borowski-1/+1
2022-10-06Rename LinesAnyMap to LinesMapKonrad Borowski-2/+2
2022-05-09Rollup merge of #96008 - fmease:warn-on-useless-doc-hidden-on-assoc-impl-item...Matthias Krüger-1/+0
2022-05-08Warn on unused doc(hidden) on trait impl itemsLeón Orell Valerian Liehr-1/+0
2022-04-14Remove use of `#[rustc_deprecated]`Jacob Pratt-1/+1
2022-02-05Optimize `core::str::Chars::count`Thom Chiovoloni-3/+2
2021-12-14Fix a bunch of typosFrank Steffahn-9/+9
2021-11-21libcore: assume the input of `next_code_point` and `next_code_point_reverse` ...Eduardo Sánchez Muñoz-8/+6
2021-10-31Rollup merge of #89897 - jkugelman:must-use-core, r=joshtriplettMatthias Krüger-0/+2
2021-10-30Add #[must_use] to remaining core functionsJohn Kugelman-0/+2
2021-10-12Add #[must_use] to expensive computationsJohn Kugelman-0/+4
2021-10-11Add #[must_use] to as_type conversionsJohn Kugelman-0/+4
2021-07-28Add TrustedRandomAccessNoCoerce supertrait without requirements or guarantees...Frank Steffahn-2/+6
2021-06-16Add doc(hidden) to all __iterator_get_uncheckedJacob Hoffman-Andrews-0/+1
2021-05-06Perf Experiment: Wait, what if I just skip the trait aliasScott McMurray-2/+2
2021-05-06Bootstrapping preparation for the libraryScott McMurray-2/+2
2021-04-23Auto merge of #82585 - TrolledWoods:master, r=dtolnaybors-0/+24
2021-04-21Replace all `fmt.pad` with `debug_struct`Christiaan Dirkx-1/+1
2021-04-05Added tracking issue numberTrolledWoods-1/+1
2021-03-19Rollup merge of #82570 - WaffleLapkin:split_whitespace_as_str, r=m-ou-seDylan DPC-0/+53
2021-02-27Added feature flag to doc testJohn Hörnvall-0/+1
2021-02-27Removed trailing whitespaceJohn Hörnvall-1/+1
2021-02-27Added CharIndices::offset functionJohn Hörnvall-0/+23
2021-02-27Change formatting of safety commentWaffle-3/+1
2021-02-27Add `as_str` method for split whitespace str iteratorsWaffle-0/+55
2021-02-15Turn may_have_side_effect into an associated constantTomasz Miąsko-4/+1
2021-01-26Same instructions, but simpler.Giles Cope-1/+1
2021-01-26Let's try the most idiomatic way.Giles Cope-5/+1
2021-01-26Removing if so it's more like the previous implementation.Giles Cope-3/+1
2021-01-26Slight simplification of chars().count()Giles Cope-4/+5
2021-01-13bump split_inclusive stabilization to 1.51.0Ashley Mannix-6/+6
2021-01-04Remove two obsolete uses of #![feature(split_inclusive)]Ian Jackson-1/+0
2021-01-04Stabilize split_inclusiveIan Jackson-6/+6
2020-10-18Add #[inline] to some core::str functions.Mara Bos-0/+1
2020-10-16fill in the tracking issueWaffle-7/+7
2020-10-01add `str::SplitInclusive::as_str` methodWaffle-3/+23
2020-10-01add `str::{SplitN, RSplitN, SplitTerminator, RSplitTerminator}::as_str` methodsWaffle-0/+89
2020-10-01add `str::{Split,RSplit}::as_str` methodsWaffle-0/+55
2020-09-26Move utf-8 validating helpers to new modLzu Tao-1/+1
2020-09-26Move str's impl of iterations to new modLzu Tao-0/+1255