#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.
Definition at line 107 of file stl_uninitialized.h. Referenced by std::deque< Type, Allocator >::deque(), std::vector< Type, Alloc >::operator=(), and std::vector< Type, Allocator >::vector(). |
|
||||||||||||||||||||
|
Copies the value x into the range [first,last).
Definition at line 169 of file stl_uninitialized.h. |
|
||||||||||||||||||||
|
Copies the value x into the range [first,first+n).
Definition at line 215 of file stl_uninitialized.h. Referenced by std::vector< Type, Allocator >::vector(). |
1.4.2