Home | History | Annotate | Download | only in docs

Lines Matching full:sequential

57     <li><a href="#ds_sequential">Sequential Containers (std::vector, std::list, etc)</a>
69 <li><a href="#dss_other">Other Sequential Container Options</a></li>
836 The first step is a choose your own adventure: do you want a sequential
854 sorted order. Set-like containers are more expensive than sequential
858 <li>a <a href="#ds_sequential">sequential</a> container provides
864 <li>a <a href="#ds_string">string</a> container is a specialized sequential
887 <a name="ds_sequential">Sequential Containers (std::vector, std::list, etc)</a>
891 There are a variety of sequential containers available for you, based on your
901 accepts a sequential list of elements in memory and just reads from them. By
1205 <a name="dss_other">Other Sequential Container options</a>
1416 great approach is to use a vector (or other sequential container) with
1419 coupled with a good choice of <a href="#ds_sequential">sequential container</a>.
1579 a set-like container along with a <a href="#ds_sequential">Sequential
1583 both a set-like container and the sequential container, using the set-like
1584 container for uniquing and the sequential container for iteration.
1597 sequential container that it uses. Use it *only* if you need to iterate over
3247 of the elements in the sequential type. </li>