Home | History | Annotate | Download | only in docs

Lines Matching full:sequential

508 The first step is a choose your own adventure: do you want a sequential
525 Set-like containers are more expensive than sequential containers.
527 * a :ref:`sequential <ds_sequential>` container provides the most efficient way
532 * a :ref:`string <ds_string>` container is a specialized sequential container or
551 Sequential Containers (std::vector, std::list, etc)
554 There are a variety of sequential containers available for you, based on your
563 accepts a sequential list of elements in memory and just reads from them. By
849 Other Sequential Container options
1011 approach is to use a vector (or other sequential container) with
1014 coupled with a good choice of :ref:`sequential container <ds_sequential>`.
1157 set-like container along with a :ref:`Sequential Container <ds_sequential>` The
1160 inserting elements into both a set-like container and the sequential container,
1161 using the set-like container for uniquing and the sequential container for
1173 sequential container that it uses. Use it **only** if you need to iterate over
2485 of the elements in the sequential type.