@@ -199,7 +199,7 @@ impl<'a> Iterator for Decompositions<'a> {
199
199
let buffer = & mut self . buffer ;
200
200
let sorted = & mut self . sorted ;
201
201
{
202
- let callback = |& mut : d| {
202
+ let callback = |d| {
203
203
let class =
204
204
unicode:: char:: canonical_combining_class ( d) ;
205
205
if class == 0 && !* sorted {
@@ -592,7 +592,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
592
592
/// let v: Vec<&str> = "Mary had a little lamb".split(' ').collect();
593
593
/// assert_eq!(v, vec!["Mary", "had", "a", "little", "lamb"]);
594
594
///
595
- /// let v: Vec<&str> = "abc1def2ghi".split(|&: c: char| c.is_numeric()).collect();
595
+ /// let v: Vec<&str> = "abc1def2ghi".split(|c: char| c.is_numeric()).collect();
596
596
/// assert_eq!(v, vec!["abc", "def", "ghi"]);
597
597
///
598
598
/// let v: Vec<&str> = "lionXXtigerXleopard".split('X').collect();
@@ -616,7 +616,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
616
616
/// let v: Vec<&str> = "Mary had a little lambda".splitn(2, ' ').collect();
617
617
/// assert_eq!(v, vec!["Mary", "had", "a little lambda"]);
618
618
///
619
- /// let v: Vec<&str> = "abc1def2ghi".splitn(1, |&: c: char| c.is_numeric()).collect();
619
+ /// let v: Vec<&str> = "abc1def2ghi".splitn(1, |c: char| c.is_numeric()).collect();
620
620
/// assert_eq!(v, vec!["abc", "def2ghi"]);
621
621
///
622
622
/// let v: Vec<&str> = "lionXXtigerXleopard".splitn(2, 'X').collect();
@@ -651,7 +651,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
651
651
/// let v: Vec<&str> = "Mary had a little lamb".split(' ').rev().collect();
652
652
/// assert_eq!(v, vec!["lamb", "little", "a", "had", "Mary"]);
653
653
///
654
- /// let v: Vec<&str> = "abc1def2ghi".split(|&: c: char| c.is_numeric()).rev().collect();
654
+ /// let v: Vec<&str> = "abc1def2ghi".split(|c: char| c.is_numeric()).rev().collect();
655
655
/// assert_eq!(v, vec!["ghi", "def", "abc"]);
656
656
///
657
657
/// let v: Vec<&str> = "lionXXtigerXleopard".split('X').rev().collect();
@@ -672,7 +672,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
672
672
/// let v: Vec<&str> = "Mary had a little lamb".rsplitn(2, ' ').collect();
673
673
/// assert_eq!(v, vec!["lamb", "little", "Mary had a"]);
674
674
///
675
- /// let v: Vec<&str> = "abc1def2ghi".rsplitn(1, |&: c: char| c.is_numeric()).collect();
675
+ /// let v: Vec<&str> = "abc1def2ghi".rsplitn(1, |c: char| c.is_numeric()).collect();
676
676
/// assert_eq!(v, vec!["ghi", "abc1def"]);
677
677
///
678
678
/// let v: Vec<&str> = "lionXXtigerXleopard".rsplitn(2, 'X').collect();
@@ -853,7 +853,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
853
853
/// assert_eq!("11foo1bar11".trim_matches('1'), "foo1bar");
854
854
/// let x: &[_] = &['1', '2'];
855
855
/// assert_eq!("12foo1bar12".trim_matches(x), "foo1bar");
856
- /// assert_eq!("123foo1bar123".trim_matches(|&: c: char| c.is_numeric()), "foo1bar");
856
+ /// assert_eq!("123foo1bar123".trim_matches(|c: char| c.is_numeric()), "foo1bar");
857
857
/// ```
858
858
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
859
859
fn trim_matches < P : CharEq > ( & self , pat : P ) -> & str {
@@ -873,7 +873,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
873
873
/// assert_eq!("11foo1bar11".trim_left_matches('1'), "foo1bar11");
874
874
/// let x: &[_] = &['1', '2'];
875
875
/// assert_eq!("12foo1bar12".trim_left_matches(x), "foo1bar12");
876
- /// assert_eq!("123foo1bar123".trim_left_matches(|&: c: char| c.is_numeric()), "foo1bar123");
876
+ /// assert_eq!("123foo1bar123".trim_left_matches(|c: char| c.is_numeric()), "foo1bar123");
877
877
/// ```
878
878
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
879
879
fn trim_left_matches < P : CharEq > ( & self , pat : P ) -> & str {
@@ -893,7 +893,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
893
893
/// assert_eq!("11foo1bar11".trim_right_matches('1'), "11foo1bar");
894
894
/// let x: &[_] = &['1', '2'];
895
895
/// assert_eq!("12foo1bar12".trim_right_matches(x), "12foo1bar");
896
- /// assert_eq!("123foo1bar123".trim_right_matches(|&: c: char| c.is_numeric()), "123foo1bar");
896
+ /// assert_eq!("123foo1bar123".trim_right_matches(|c: char| c.is_numeric()), "123foo1bar");
897
897
/// ```
898
898
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
899
899
fn trim_right_matches < P : CharEq > ( & self , pat : P ) -> & str {
@@ -1066,7 +1066,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
1066
1066
/// assert_eq!(s.find('é'), Some(14));
1067
1067
///
1068
1068
/// // the first space
1069
- /// assert_eq!(s.find(|&: c: char| c.is_whitespace()), Some(5));
1069
+ /// assert_eq!(s.find(|c: char| c.is_whitespace()), Some(5));
1070
1070
///
1071
1071
/// // neither are found
1072
1072
/// let x: &[_] = &['1', '2'];
@@ -1094,7 +1094,7 @@ pub trait StrExt: Index<RangeFull, Output = str> {
1094
1094
/// assert_eq!(s.rfind('é'), Some(14));
1095
1095
///
1096
1096
/// // the second space
1097
- /// assert_eq!(s.rfind(|&: c: char| c.is_whitespace()), Some(12));
1097
+ /// assert_eq!(s.rfind(|c: char| c.is_whitespace()), Some(12));
1098
1098
///
1099
1099
/// // searches for an occurrence of either `1` or `2`, but neither are found
1100
1100
/// let x: &[_] = &['1', '2'];
@@ -1387,21 +1387,21 @@ mod tests {
1387
1387
#[ test]
1388
1388
fn test_find ( ) {
1389
1389
assert_eq ! ( "hello" . find( 'l' ) , Some ( 2 u) ) ;
1390
- assert_eq ! ( "hello" . find( |& : c: char | c == 'o' ) , Some ( 4 u) ) ;
1390
+ assert_eq ! ( "hello" . find( |c: char | c == 'o' ) , Some ( 4 u) ) ;
1391
1391
assert ! ( "hello" . find( 'x' ) . is_none( ) ) ;
1392
- assert ! ( "hello" . find( |& : c: char | c == 'x' ) . is_none( ) ) ;
1392
+ assert ! ( "hello" . find( |c: char | c == 'x' ) . is_none( ) ) ;
1393
1393
assert_eq ! ( "ประเทศไทย中华Việt Nam" . find( '华' ) , Some ( 30 u) ) ;
1394
- assert_eq ! ( "ประเทศไทย中华Việt Nam" . find( |& : c: char | c == '华' ) , Some ( 30 u) ) ;
1394
+ assert_eq ! ( "ประเทศไทย中华Việt Nam" . find( |c: char | c == '华' ) , Some ( 30 u) ) ;
1395
1395
}
1396
1396
1397
1397
#[ test]
1398
1398
fn test_rfind ( ) {
1399
1399
assert_eq ! ( "hello" . rfind( 'l' ) , Some ( 3 u) ) ;
1400
- assert_eq ! ( "hello" . rfind( |& : c: char | c == 'o' ) , Some ( 4 u) ) ;
1400
+ assert_eq ! ( "hello" . rfind( |c: char | c == 'o' ) , Some ( 4 u) ) ;
1401
1401
assert ! ( "hello" . rfind( 'x' ) . is_none( ) ) ;
1402
- assert ! ( "hello" . rfind( |& : c: char | c == 'x' ) . is_none( ) ) ;
1402
+ assert ! ( "hello" . rfind( |c: char | c == 'x' ) . is_none( ) ) ;
1403
1403
assert_eq ! ( "ประเทศไทย中华Việt Nam" . rfind( '华' ) , Some ( 30 u) ) ;
1404
- assert_eq ! ( "ประเทศไทย中华Việt Nam" . rfind( |& : c: char | c == '华' ) , Some ( 30 u) ) ;
1404
+ assert_eq ! ( "ประเทศไทย中华Việt Nam" . rfind( |c: char | c == '华' ) , Some ( 30 u) ) ;
1405
1405
}
1406
1406
1407
1407
#[ test]
@@ -1723,7 +1723,7 @@ mod tests {
1723
1723
assert_eq ! ( "11foo1bar11" . trim_left_matches( '1' ) , "foo1bar11" ) ;
1724
1724
let chars: & [ char ] = & [ '1' , '2' ] ;
1725
1725
assert_eq ! ( "12foo1bar12" . trim_left_matches( chars) , "foo1bar12" ) ;
1726
- assert_eq ! ( "123foo1bar123" . trim_left_matches( |& : c: char | c. is_numeric( ) ) , "foo1bar123" ) ;
1726
+ assert_eq ! ( "123foo1bar123" . trim_left_matches( |c: char | c. is_numeric( ) ) , "foo1bar123" ) ;
1727
1727
}
1728
1728
1729
1729
#[ test]
@@ -1738,7 +1738,7 @@ mod tests {
1738
1738
assert_eq ! ( "11foo1bar11" . trim_right_matches( '1' ) , "11foo1bar" ) ;
1739
1739
let chars: & [ char ] = & [ '1' , '2' ] ;
1740
1740
assert_eq ! ( "12foo1bar12" . trim_right_matches( chars) , "12foo1bar" ) ;
1741
- assert_eq ! ( "123foo1bar123" . trim_right_matches( |& : c: char | c. is_numeric( ) ) , "123foo1bar" ) ;
1741
+ assert_eq ! ( "123foo1bar123" . trim_right_matches( |c: char | c. is_numeric( ) ) , "123foo1bar" ) ;
1742
1742
}
1743
1743
1744
1744
#[ test]
@@ -1753,7 +1753,7 @@ mod tests {
1753
1753
assert_eq ! ( "11foo1bar11" . trim_matches( '1' ) , "foo1bar" ) ;
1754
1754
let chars: & [ char ] = & [ '1' , '2' ] ;
1755
1755
assert_eq ! ( "12foo1bar12" . trim_matches( chars) , "foo1bar" ) ;
1756
- assert_eq ! ( "123foo1bar123" . trim_matches( |& : c: char | c. is_numeric( ) ) , "foo1bar" ) ;
1756
+ assert_eq ! ( "123foo1bar123" . trim_matches( |c: char | c. is_numeric( ) ) , "foo1bar" ) ;
1757
1757
}
1758
1758
1759
1759
#[ test]
@@ -2222,14 +2222,14 @@ mod tests {
2222
2222
let split: Vec < & str > = data. splitn ( 3 , ' ' ) . collect ( ) ;
2223
2223
assert_eq ! ( split, vec![ "\n Märy" , "häd" , "ä" , "little lämb\n Little lämb\n " ] ) ;
2224
2224
2225
- let split: Vec < & str > = data. splitn ( 3 , |& : c: char | c == ' ' ) . collect ( ) ;
2225
+ let split: Vec < & str > = data. splitn ( 3 , |c : char | c == ' ' ) . collect ( ) ;
2226
2226
assert_eq ! ( split, vec![ "\n Märy" , "häd" , "ä" , "little lämb\n Little lämb\n " ] ) ;
2227
2227
2228
2228
// Unicode
2229
2229
let split: Vec < & str > = data. splitn ( 3 , 'ä' ) . collect ( ) ;
2230
2230
assert_eq ! ( split, vec![ "\n M" , "ry h" , "d " , " little lämb\n Little lämb\n " ] ) ;
2231
2231
2232
- let split: Vec < & str > = data. splitn ( 3 , |& : c: char | c == 'ä' ) . collect ( ) ;
2232
+ let split: Vec < & str > = data. splitn ( 3 , |c : char | c == 'ä' ) . collect ( ) ;
2233
2233
assert_eq ! ( split, vec![ "\n M" , "ry h" , "d " , " little lämb\n Little lämb\n " ] ) ;
2234
2234
}
2235
2235
@@ -2940,7 +2940,7 @@ mod bench {
2940
2940
let s = "Mary had a little lamb, Little lamb, little-lamb." ;
2941
2941
let len = s. split ( ' ' ) . count ( ) ;
2942
2942
2943
- b. iter ( || assert_eq ! ( s. split( |& : c: char | c == ' ' ) . count( ) , len) ) ;
2943
+ b. iter ( || assert_eq ! ( s. split( |c: char | c == ' ' ) . count( ) , len) ) ;
2944
2944
}
2945
2945
2946
2946
#[ bench]
0 commit comments