about summary refs log tree commit diff
path: root/src/libcore/str/pattern.rs
AgeCommit message (Expand)AuthorLines
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-1/+2
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-04core: Use memcmp in is_prefix_of / is_suffix_ofUlrik Sverdrup-5/+4
2015-06-24StrSearcher: Explicitly separate the long and short casesUlrik Sverdrup-5/+11
2015-06-21StrSearcher: Use trait to specialize two way algorithm by caseUlrik Sverdrup-57/+133
2015-06-21StrSearcher: Specialize is_prefix_of/is_suffix_of for &strUlrik Sverdrup-17/+33
2015-06-21StrSearcher: Update substring search to use the Two Way algorithmUlrik Sverdrup-127/+465
2015-06-17core: Split apart the global `core` featureAlex Crichton-0/+3
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-4/+4
2015-04-05Added smoke tests for new methods.Marvin Löbel-10/+23
2015-04-05Refactored core::str::pattern to become a user-facing module and hide awayMarvin Löbel-9/+14
2015-04-05Implemented remaining string pattern iterators.Marvin Löbel-70/+113
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-43/+125
2015-03-23Remove auto-deref'ing Pattern impl because it conflicts with otherNiko Matsakis-13/+7
2015-03-19Fix spelling errors in comments.Joseph Crail-2/+2
2015-03-11Example -> ExamplesSteve Klabnik-1/+1
2015-02-20Addressed PR commentsMarvin Löbel-44/+169
2015-02-20Fix tidy and rebase falloutMarvin Löbel-8/+19
2015-02-20Added a Pattern impl that delegates to the dereference of a type.Marvin Löbel-11/+75
2015-02-20Refactored code into Searcher traits with naive implementationsMarvin Löbel-38/+219
2015-02-20Made match_indices use the generic pattern APIMarvin Löbel-5/+6
2015-02-20Made str::MatchIndices a private implementantion detailMarvin Löbel-2/+2
2015-02-20Added string pattern traits and basic implementantionsMarvin Löbel-0/+113