#include <cstring>Include dependency graph for stl_uninitialized.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | std |
Functions | |
| template<typename InputIterator, typename ForwardIterator> ForwardIterator | uninitialized_copy (InputIterator first, InputIterator last, ForwardIterator __result) |
| Copies the range [first,last) into result. | |
| template<typename ForwardIterator, typename Type> void | uninitialized_fill (ForwardIterator first, ForwardIterator last, const Type &x) |
| Copies the value x into the range [first,last). | |
| template<typename ForwardIterator, typename Size, typename Type> ForwardIterator | uninitialized_fill_n (ForwardIterator first, Size n, const Type &x) |
| Copies the value x into the range [first,first+n). | |
Definition in file stl_uninitialized.h.
|
||||||||||||||||||||
|
Copies the range [first,last) into result.
Referenced by std::deque< Type, Allocator >::deque(), std::vector< Type, Alloc >::operator=(), and std::vector< qual, qualAllocator >::vector(). |
|
||||||||||||||||||||
|
Copies the value x into the range [first,last).
|
|
||||||||||||||||||||
|
Copies the value x into the range [first,first+n).
Referenced by std::vector< qual, qualAllocator >::vector(). |
1.3.8