File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ use std::ops::Range;
5
5
use std:: usize;
6
6
7
7
/// `Enumerate` is an iterator that returns the current count along with the element.
8
- /// This struct is created by the [`enumerate()`] method on [`ParallelIterator `]
8
+ /// This struct is created by the [`enumerate()`] method on [`IndexedParallelIterator `]
9
9
///
10
- /// [`enumerate()`]: trait.ParallelIterator .html#method.enumerate
11
- /// [`ParallelIterator `]: trait.ParallelIterator .html
10
+ /// [`enumerate()`]: trait.IndexedParallelIterator .html#method.enumerate
11
+ /// [`IndexedParallelIterator `]: trait.IndexedParallelIterator .html
12
12
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
13
13
#[ derive( Debug , Clone ) ]
14
14
pub struct Enumerate < I : IndexedParallelIterator > {
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ use super::noop::NoopConsumer;
4
4
use std:: cmp:: min;
5
5
6
6
/// `Skip` is an iterator that skips over the first `n` elements.
7
- /// This struct is created by the [`skip()`] method on [`ParallelIterator `]
7
+ /// This struct is created by the [`skip()`] method on [`IndexedParallelIterator `]
8
8
///
9
- /// [`skip()`]: trait.ParallelIterator .html#method.skip
10
- /// [`ParallelIterator `]: trait.ParallelIterator .html
9
+ /// [`skip()`]: trait.IndexedParallelIterator .html#method.skip
10
+ /// [`IndexedParallelIterator `]: trait.IndexedParallelIterator .html
11
11
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
12
12
#[ derive( Debug , Clone ) ]
13
13
pub struct Skip < I > {
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ use super::*;
3
3
use std:: cmp:: min;
4
4
5
5
/// `Take` is an iterator that iterates over the first `n` elements.
6
- /// This struct is created by the [`take()`] method on [`ParallelIterator `]
6
+ /// This struct is created by the [`take()`] method on [`IndexedParallelIterator `]
7
7
///
8
- /// [`take()`]: trait.ParallelIterator .html#method.take
9
- /// [`ParallelIterator `]: trait.ParallelIterator .html
8
+ /// [`take()`]: trait.IndexedParallelIterator .html#method.take
9
+ /// [`IndexedParallelIterator `]: trait.IndexedParallelIterator .html
10
10
#[ must_use = "iterator adaptors are lazy and do nothing unless consumed" ]
11
11
#[ derive( Debug , Clone ) ]
12
12
pub struct Take < I > {
You can’t perform that action at this time.
0 commit comments