Merge pull request #7595 from thestinger/iterator

remove some method resolve workarounds
This commit is contained in:
Daniel Micay
2013-07-08 01:42:07 -07:00
51 changed files with 118 additions and 118 deletions

View File

@@ -278,7 +278,7 @@ impl CharEq for extern "Rust" fn(char) -> bool {
impl<'self, C: CharEq> CharEq for &'self [C] {
#[inline]
fn matches(&self, c: char) -> bool {
self.iter().any_(|m| m.matches(c))
self.iter().any(|m| m.matches(c))
}
fn only_ascii(&self) -> bool {