From e33fca9ffefffc982bbde860251f11b191457412 Mon Sep 17 00:00:00 2001 From: Marvin Löbel Date: Sat, 27 Jul 2013 23:38:38 +0200 Subject: Added str::char_offset_iter() and str::rev_char_offset_iter() Renamed bytes_iter to byte_iter to match other iterators Refactored str Iterators to use DoubleEnded Iterators and typedefs instead of wrapper structs Reordered the Iterator section Whitespace fixup Moved clunky `each_split_within` function to the one place in the tree where it's actually needed Replaced all block doccomments in str with line doccomments --- src/libstd/str/ascii.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstd/str') diff --git a/src/libstd/str/ascii.rs b/src/libstd/str/ascii.rs index d8b50c96fd8..24e48dbe139 100644 --- a/src/libstd/str/ascii.rs +++ b/src/libstd/str/ascii.rs @@ -115,7 +115,7 @@ impl<'self> AsciiCast<&'self[Ascii]> for &'self str { #[inline] fn is_ascii(&self) -> bool { - self.bytes_iter().all(|b| b.is_ascii()) + self.byte_iter().all(|b| b.is_ascii()) } } -- cgit 1.4.1-3-g733a5