#include <cstring>


Go to the source code of this file.
Namespaces | |
| namespace | std |
Functions | |
| template<typename InputIterator, typename ForwardIterator> | |
| ForwardIterator | std::uninitialized_copy (InputIterator first, InputIterator last, ForwardIterator __result) |
| Copies the range [first,last) into result. | |
| template<typename ForwardIterator, typename Type> | |
| void | std::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 | std::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.
1.5.5