Standard C++ Library Class Reference

Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
uninitialized_fill_n
Memory Management
Summary
Algorithm that uses the language feature placement new for setting values in a collection.
Contents
Synopsis
Description
See Also
Synopsis
#include <memory>
template <class ForwardIterator,
class Size, class T>
void uninitialized_fill_n (ForwardIterator first,
Size n, const T& x);
Description
unitialized_fill_n starts at the iterator first and initializes the first n items to the value x, using
the language feature placement new.
See Also
uninitialized_fill