.\" ident @(#)uninitialized_fill.3 .\" Standard Template Library .\" $$RW_INSERT_HEADER "slyrs.man" .TH uninitialized_fill 3C++ "02 Apr 1998" "Rogue Wave Software" "-" .ce2 Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. .SH NAME \f2uninitialized_fill\fP \ - An algorithm that uses the construct algorithm for setting values in a collection. .SH SYNOPSIS .RE .RS 0 #include .br template .RE .RS 1 void .RE .RS 5 uninitialized_fill(ForwardIterator first, .RE .RS 23 ForwardIterator last, const T& x); .SH DESCRIPTION uninitialized_fill initializes all of the items in the range\f2 [first, last)\fP to the value \f2x\fP, using the construct algorithm. .SH SEE ALSO construct, uninitialized_fill_n