Corrections

This commit is contained in:
Antti H S Laaksonen 2017-01-30 23:36:14 +02:00
parent eae5c6bd90
commit 3c6a76297d
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ Thus, the range defined by the iterators is \emph{half-open}.
\subsubsection{Working with ranges} \subsubsection{Working with ranges}
Iterators are used in C++ standard library functions Iterators are used in C++ standard library functions
that work with ranges of data structures. that are given a range of elements in a data structure.
Usually, we want to process all elements in a Usually, we want to process all elements in a
data structure, so the iterators data structure, so the iterators
\texttt{begin} and \texttt{end} are given for the function. \texttt{begin} and \texttt{end} are given for the function.