Skip to content

Commit a35af65

Browse files
jensmaurertkoeppe
authored andcommitted
[queue] Index constructors.
1 parent 03443bd commit a35af65

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

source/containers.tex

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9899,6 +9899,7 @@
98999899

99009900
\rSec3[queue.cons]{Constructors}
99019901

9902+
\indexlibraryctor{queue}%
99029903
\begin{itemdecl}
99039904
explicit queue(const Container& cont);
99049905
\end{itemdecl}
@@ -9909,6 +9910,7 @@
99099910
Initializes \tcode{c} with \tcode{cont}.
99109911
\end{itemdescr}
99119912

9913+
\indexlibraryctor{queue}%
99129914
\begin{itemdecl}
99139915
explicit queue(Container&& cont);
99149916
\end{itemdecl}
@@ -9919,6 +9921,7 @@
99199921
Initializes \tcode{c} with \tcode{std::move(cont)}.
99209922
\end{itemdescr}
99219923

9924+
\indexlibraryctor{queue}%
99229925
\begin{itemdecl}
99239926
template<class InputIterator>
99249927
queue(InputIterator first, InputIterator last);
@@ -9937,6 +9940,7 @@
99379940
If \tcode{uses_allocator_v<container_type, Alloc>} is \tcode{false}
99389941
the constructors in this subclause shall not participate in overload resolution.
99399942

9943+
\indexlibraryctor{queue}%
99409944
\begin{itemdecl}
99419945
template<class Alloc> explicit queue(const Alloc& a);
99429946
\end{itemdecl}
@@ -9947,6 +9951,7 @@
99479951
Initializes \tcode{c} with \tcode{a}.
99489952
\end{itemdescr}
99499953

9954+
\indexlibraryctor{queue}%
99509955
\begin{itemdecl}
99519956
template<class Alloc> queue(const container_type& cont, const Alloc& a);
99529957
\end{itemdecl}
@@ -9958,6 +9963,7 @@
99589963
as the second argument.
99599964
\end{itemdescr}
99609965

9966+
\indexlibraryctor{queue}%
99619967
\begin{itemdecl}
99629968
template<class Alloc> queue(container_type&& cont, const Alloc& a);
99639969
\end{itemdecl}
@@ -9969,6 +9975,7 @@
99699975
as the second argument.
99709976
\end{itemdescr}
99719977

9978+
\indexlibraryctor{queue}%
99729979
\begin{itemdecl}
99739980
template<class Alloc> queue(const queue& q, const Alloc& a);
99749981
\end{itemdecl}
@@ -9980,6 +9987,7 @@
99809987
second argument.
99819988
\end{itemdescr}
99829989

9990+
\indexlibraryctor{queue}%
99839991
\begin{itemdecl}
99849992
template<class Alloc> queue(queue&& q, const Alloc& a);
99859993
\end{itemdecl}
@@ -9991,6 +9999,7 @@
99919999
as the second argument.
999210000
\end{itemdescr}
999310001

10002+
\indexlibraryctor{queue}%
999410003
\begin{itemdecl}
999510004
template<class InputIterator, class Alloc>
999610005
queue(InputIterator first, InputIterator last, const Alloc& alloc);

0 commit comments

Comments
 (0)