diff --git a/source/containers.tex b/source/containers.tex index 00e07cefd0..c0e3a69c65 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -1253,24 +1253,6 @@ \tcode{flat_multiset}s, out of the basic sequence container kinds (or out of other program-defined sequence containers). -\pnum -\begin{note} -The sequence containers -offer the programmer different complexity trade-offs. -\tcode{vector} -is appropriate in most circumstances. -\tcode{array} -has a fixed size known during translation. -\tcode{list} or \tcode{forward_list} -support frequent insertions and deletions from the -middle of the sequence. -\tcode{deque} -supports efficient insertions and deletions taking place at the beginning or at the -end of the sequence. -When choosing a container, remember \tcode{vector} is best; -leave a comment to explain if you choose from the rest! -\end{note} - \pnum In this subclause, \begin{itemize}