Skip to content

Commit 4819078

Browse files
TylerMSFTTylerMSFT
authored andcommitted
last tweak
1 parent b18de10 commit 4819078

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/standard-library/iterator-concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ The following iterator concepts are listed in order of increasing capability. `i
6060

6161
In the following table, "Multi-pass" refers to whether the iterator can revisit the same element more than once. For example, `vector::iterator` is a multi-pass iterator because you can make a copy of the iterator, read the elements in the collection, and then restore the iterator to the value in the copy, and revisit the same elements again. If an iterator is single-pass, you can only visit the elements in the collection once.
6262

63-
In the following table, "Types" refers to the types of collections/iterators that satisfy the concept.
63+
In the following table, "Example types" refers to collections/iterators that satisfy the concept.
6464

65-
| Iterator concept | Description | Direction | Read/write | Multi-pass | Types |
65+
| Iterator concept | Description | Direction | Read/write | Multi-pass | Example types |
6666
|--|--|--|--|--|--|
6767
| [`input_or_output_iterator`](#input_or_output_iterator)<sup>C++20</sup> | The basis of the iterator concept taxonomy. | Forward | Read/write | no | `istream_iterator`, `ostream_iterator` |
6868
| [`output_iterator`](#output_iterator)<sup>C++20</sup> | Specifies an iterator that you can write to. | Forward | Write | no | `ostream`, `inserter` |

0 commit comments

Comments
 (0)