#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 InputIter, typename ForwardIter> | |
| ForwardIter | uninitialized_copy (InputIter first, InputIter last, ForwardIter __result) |
| Copies the range [first,last) into result. | |
| template<typename ForwardIter, typename Type> | |
| void | uninitialized_fill (ForwardIter first, ForwardIter last, const Type &x) |
| Copies the value x into the range [first,last). | |
| template<typename ForwardIter, typename Size, typename Type> | |
| ForwardIter | uninitialized_fill_n (ForwardIter 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 108 of file stl_uninitialized.h. Referenced by std::deque< Type, Alloc >::deque(), std::vector< Type, Alloc >::operator=(), and std::vector< Node *, Alloc >::vector(). |
|
||||||||||||||||||||
|
Copies the value x into the range [first,last).
Definition at line 166 of file stl_uninitialized.h. |
|
||||||||||||||||||||
|
Copies the value x into the range [first,first+n).
Definition at line 212 of file stl_uninitialized.h. Referenced by std::vector< Node *, Alloc >::vector(). |
1.4.2