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