Personal tools
uninitialized_fill_n




Click on the banner to return to the class reference home page.
uninitialized_fill_n
Memory Management
Summary
Algorithm that uses the construct algorithm for setting values in a collection.
Data Type and Member Function Indexes
(exclusive of constructors and destructors)
None
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 construct algorithm.
See Also



©Copyright 1996, Rogue Wave Software, Inc.