index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
libcore
/
str
/
pattern.rs
Age
Commit message (
Expand
)
Author
Lines
2020-03-30
Optimize strip_prefix and strip_suffix with str patterns
Nikhil Benesch
-0
/
+85
2020-03-07
Use ?-operator in more places (clippy::question_mark, had some false negative...
Matthias Krüger
-8
/
+5
2020-02-26
don't take redundant references to operands
Matthias Krüger
-1
/
+1
2020-01-16
Document unsafe blocks in core::{cell, str, sync}
Phoebe Bell
-2
/
+11
2020-01-08
Use matches macro in libcore and libstd
Igor Aleksanov
-8
/
+2
2019-12-22
Format the world
Mark Rousskov
-101
/
+130
2019-12-16
Rollup merge of #67249 - ranma42:improve-starts-with-literal-char, r=BurntSushi
Mazdak Farrokhzad
-15
/
+4
2019-12-12
Minor cleanup in `Pattern::{is_prefix_of,is_suffix_of}` for `char`
Andrea Canciani
-4
/
+2
2019-12-12
Prefer encoding the char when checking for string prefix/suffix
Andrea Canciani
-10
/
+4
2019-12-11
Improve `str` prefix/suffix comparison
Andrea Canciani
-5
/
+2
2019-12-11
Some small readability improvements
Andre Bogus
-6
/
+1
2019-11-06
Have tidy ensure that we document all `unsafe` blocks in libcore
Oliver Scherer
-0
/
+2
2019-04-19
libcore: deny more...
Mazdak Farrokhzad
-1
/
+1
2019-04-18
libcore => 2018
Taiki Endo
-4
/
+4
2019-02-10
libs: doc comments
Alexander Regueiro
-4
/
+4
2019-02-10
rustc: doc comments
Alexander Regueiro
-2
/
+2
2019-01-09
Misc cleanups
Shotaro Yamada
-2
/
+1
2018-12-25
Remove licenses
Mark Rousskov
-10
/
+0
2018-12-07
Various minor/cosmetic improvements to code
Alexander Regueiro
-2
/
+2
2018-09-29
Use impl_header_lifetime_elision in libcore
Scott McMurray
-2
/
+2
2018-06-26
Deprecation of str::slice_uncheked(_mut)
newpavlov
-1
/
+1
2018-04-16
Remove unwanted auto-linking and update
Guillaume Gomez
-1
/
+1
2018-02-15
spelling fix in comment
Steve Klabnik
-1
/
+1
2018-01-06
Make double ended string searchers use dependent fingers (fixes #47175)
Manish Goregaokar
-6
/
+10
2018-01-01
handle overflow/underflow in index offsets
Manish Goregaokar
-10
/
+15
2017-12-18
Add memchr search support for multibyte characters
Manish Goregaokar
-48
/
+102
2017-12-16
Fill in reverse searcher impl for char
Manish Goregaokar
-6
/
+50
2017-12-13
Fill in forward searcher impl for char
Manish Goregaokar
-13
/
+65
2017-12-13
Move CharSearcher to its own section in the file
Manish Goregaokar
-83
/
+84
2017-12-13
Split out char searcher from MultiCharSearcher
Manish Goregaokar
-29
/
+58
2017-12-13
Remove the unused ascii_only field in CharEqSearcher
Manish Goregaokar
-16
/
+0
2017-08-15
use field init shorthand EVERYWHERE
Zack M. Davis
-11
/
+11
2017-07-23
Fix some doc/comment typos.
Bruce Mitchener
-3
/
+3
2017-07-20
std: Cut down #[inline] annotations where not necessary
Alex Crichton
-3
/
+3
2017-06-17
Inline StrSearcher::haystack()
Alexander Bulaev
-1
/
+4
2017-05-19
Try to optimise char patterns
Simonas Kazlauskas
-1
/
+27
2017-02-09
name anonymous fn parameters in libcore traits
Trevor Spiteri
-3
/
+3
2016-08-24
Use `#[prelude_import]` in `libcore`.
Jeffrey Seyfried
-2
/
+0
2016-06-23
Use `len` instead of `size_hint` where appropiate
Tobias Bucher
-4
/
+4
2016-03-20
libcore: add Debug implementations to most missing types
Sean McArthur
-3
/
+15
2016-03-01
Changed `std::pattern::Pattern` impl on `&'a &'a str` to `&'a &'b str`
Marvin Löbel
-1
/
+1
2015-08-18
Auto merge of #27474 - bluss:twoway-reverse, r=brson
bors
-64
/
+193
2015-08-16
StrSearcher: Additional comments and small code moves
Ulrik Sverdrup
-19
/
+27
2015-08-15
core: Fill out issues for unstable features
Alex Crichton
-1
/
+2
2015-08-07
StrSearcher: Improve inner loop in TwoWaySearcher::next, next_back
Ulrik Sverdrup
-10
/
+22
2015-08-03
syntax: Implement #![no_core]
Alex Crichton
-1
/
+2
2015-08-02
StrSearcher: Implement the full two way algorithm in reverse for rfind
Ulrik Sverdrup
-49
/
+158
2015-07-29
std: Remove the curious inner module
Alex Crichton
-1
/
+1
2015-07-04
core: Use memcmp in is_prefix_of / is_suffix_of
Ulrik Sverdrup
-5
/
+4
2015-06-24
StrSearcher: Explicitly separate the long and short cases
Ulrik Sverdrup
-5
/
+11
[next]