File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 290
290
\tcode {end()}
291
291
returns an iterator which is the past-the-end value for the container.
292
292
If the container is empty, then
293
- \tcode {begin() == end()};
293
+ \tcode {begin() == end()}.
294
294
295
295
\pnum
296
296
In the expressions
989
989
\begin {codeblock }
990
990
template <class InputIterator>
991
991
X(InputIterator first, InputIterator last,
992
- const allocator_type& alloc = allocator_type())
992
+ const allocator_type& alloc = allocator_type());
993
993
\end {codeblock }
994
994
995
995
is called with a type \tcode {InputIterator} that does not qualify as an input
1989
1989
For associative containers with unique keys the stronger condition holds,
1990
1990
1991
1991
\begin {codeblock }
1992
- value_comp(*i, *j) != false.
1992
+ value_comp(*i, *j) != false
1993
1993
\end {codeblock }
1994
1994
1995
1995
\pnum
2398
2398
and \tcode {CopyAssignable}.\br
2399
2399
\effects \ Assigns the range \range {il.begin()}{il.end()} into \tcode {a}. All
2400
2400
existing elements of \tcode {a} are either assigned to or destroyed.
2401
- & Same as \tcode {a = X(il).}
2401
+ & Same as \tcode {a = X(il)}.
2402
2402
\\ \rowsep
2403
2403
%
2404
2404
\tcode {b.hash_function()}
You can’t perform that action at this time.
0 commit comments