Lines Matching refs:rev
49 assert!(UnicodeSegmentation::graphemes(s, true).rev().eq(g.iter().rev().cloned())); in test_graphemes()
50 assert!(UnicodeSegmentation::graphemes(s, false).rev().eq(g.iter().rev().cloned())); in test_graphemes()
59 assert!(UnicodeSegmentation::graphemes(s, true).rev().eq(gt.iter().rev().cloned())); in test_graphemes()
60 assert!(UnicodeSegmentation::graphemes(s, false).rev().eq(gf.iter().rev().cloned())); in test_graphemes()
68 …let gr_inds = UnicodeSegmentation::grapheme_indices(s, true).rev().collect::<Vec<(usize, &str)>>(); in test_graphemes()
84 let gr = UnicodeSegmentation::graphemes(s, true).rev().collect::<Vec<&str>>(); in test_graphemes()
120 assert_!(s.split_word_bounds().rev(), in test_words()
121 w.iter().rev().cloned(), in test_words()
138 assert_!(s.split_word_bound_indices().rev().map(|(l,_)| l), in test_words()
139 indices.iter().rev().cloned(), in test_words()
168 let mut b = s.graphemes(true).rev().collect::<Vec<_>>();
175 let mut b = s.graphemes(false).rev().collect::<Vec<_>>();
188 let mut b = s.split_word_bounds().rev().collect::<Vec<_>>();