We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eecbe55 commit 13460deCopy full SHA for 13460de
src/libstd/str.rs
@@ -258,7 +258,7 @@ impl CharEq for extern "Rust" fn(char) -> bool {
258
impl<'self, C: CharEq> CharEq for &'self [C] {
259
#[inline(always)]
260
fn matches(&self, c: char) -> bool {
261
- self.iter().any(|m| m.matches(c))
+ self.iter().any_(|m| m.matches(c))
262
}
263
264
fn only_ascii(&self) -> bool {
0 commit comments