#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 |
Defines | |
#define | CPPBITSSTLUNINITIALIZEDH |
Functions | |
template<typename InputIter, typename ForwardIter> | |
ForwardIter | std::__uninitialized_copy_aux (InputIter first, InputIter last, ForwardIter __result, __true_type) |
template<typename InputIter, typename ForwardIter> | |
ForwardIter | std::__uninitialized_copy_aux (InputIter first, InputIter last, ForwardIter __result, __false_type) |
template<typename InputIter, typename ForwardIter> | |
ForwardIter | std::uninitialized_copy (InputIter first, InputIter last, ForwardIter __result) |
Copies the range [first,last) into result. | |
char * | std::uninitialized_copy (const char *first, const char *last, char *__result) |
wchar_t * | std::uninitialized_copy (const wchar_t *first, const wchar_t *last, wchar_t *__result) |
template<typename ForwardIter, typename Type> | |
void | std::__uninitialized_fill_aux (ForwardIter first, ForwardIter last, const Type &x, __true_type) |
template<typename ForwardIter, typename Type> | |
void | std::__uninitialized_fill_aux (ForwardIter first, ForwardIter last, const Type &x, __false_type) |
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_aux (ForwardIter first, Size n, const Type &x, __true_type) |
template<typename ForwardIter, typename Size, typename Type> | |
ForwardIter | std::__uninitialized_fill_n_aux (ForwardIter first, Size n, const Type &x, __false_type) |
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). | |
template<typename InputIter1, typename InputIter2, typename ForwardIter> | |
ForwardIter | std::__uninitialized_copy_copy (InputIter1 first1, InputIter1 last1, InputIter2 first2, InputIter2 last2, ForwardIter __result) |
template<typename ForwardIter, typename Type, typename InputIter> | |
ForwardIter | std::__uninitialized_fill_copy (ForwardIter __result, ForwardIter __mid, const Type &x, InputIter first, InputIter last) |
template<typename InputIter, typename ForwardIter, typename Type> | |
void | std::__uninitialized_copy_fill (InputIter first1, InputIter last1, ForwardIter first2, ForwardIter last2, const Type &x) |
Definition in file stl_uninitialized.h.