@@ -2851,7 +2851,7 @@ pub trait Iterator {
2851
2851
Product :: product ( self )
2852
2852
}
2853
2853
2854
- /// Lexicographically compares the elements of this [`Iterator`] with those
2854
+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
2855
2855
/// of another.
2856
2856
///
2857
2857
/// # Examples
@@ -2873,7 +2873,7 @@ pub trait Iterator {
2873
2873
self . cmp_by ( other, |x, y| x. cmp ( & y) )
2874
2874
}
2875
2875
2876
- /// Lexicographically compares the elements of this [`Iterator`] with those
2876
+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
2877
2877
/// of another with respect to the specified comparison function.
2878
2878
///
2879
2879
/// # Examples
@@ -2925,7 +2925,7 @@ pub trait Iterator {
2925
2925
}
2926
2926
}
2927
2927
2928
- /// Lexicographically compares the elements of this [`Iterator`] with those
2928
+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
2929
2929
/// of another.
2930
2930
///
2931
2931
/// # Examples
@@ -2949,7 +2949,7 @@ pub trait Iterator {
2949
2949
self . partial_cmp_by ( other, |x, y| x. partial_cmp ( & y) )
2950
2950
}
2951
2951
2952
- /// Lexicographically compares the elements of this [`Iterator`] with those
2952
+ /// [ Lexicographically](Ord#lexicographical-comparison) compares the elements of this [`Iterator`] with those
2953
2953
/// of another with respect to the specified comparison function.
2954
2954
///
2955
2955
/// # Examples
@@ -3089,7 +3089,7 @@ pub trait Iterator {
3089
3089
!self . eq ( other)
3090
3090
}
3091
3091
3092
- /// Determines if the elements of this [`Iterator`] are lexicographically
3092
+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
3093
3093
/// less than those of another.
3094
3094
///
3095
3095
/// # Examples
@@ -3110,7 +3110,7 @@ pub trait Iterator {
3110
3110
self . partial_cmp ( other) == Some ( Ordering :: Less )
3111
3111
}
3112
3112
3113
- /// Determines if the elements of this [`Iterator`] are lexicographically
3113
+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
3114
3114
/// less or equal to those of another.
3115
3115
///
3116
3116
/// # Examples
@@ -3131,7 +3131,7 @@ pub trait Iterator {
3131
3131
matches ! ( self . partial_cmp( other) , Some ( Ordering :: Less | Ordering :: Equal ) )
3132
3132
}
3133
3133
3134
- /// Determines if the elements of this [`Iterator`] are lexicographically
3134
+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
3135
3135
/// greater than those of another.
3136
3136
///
3137
3137
/// # Examples
@@ -3152,7 +3152,7 @@ pub trait Iterator {
3152
3152
self . partial_cmp ( other) == Some ( Ordering :: Greater )
3153
3153
}
3154
3154
3155
- /// Determines if the elements of this [`Iterator`] are lexicographically
3155
+ /// Determines if the elements of this [`Iterator`] are [ lexicographically](Ord#lexicographical-comparison)
3156
3156
/// greater than or equal to those of another.
3157
3157
///
3158
3158
/// # Examples
0 commit comments