.\" ident @(#)uninitialized_fill_n.3 .\" Standard Template Library .\" $$RW_INSERT_HEADER "slyrs.man" .TH uninitialized_fill_n 3C++ "02 Apr 1998" "Rogue Wave Software" "-" .ce2 Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. .SH NAME \f2uninitialized_fill_n\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 4 uninitialized_fill_n (ForwardIterator first, Size n, .RE .RS 25 const T& x); .SH DESCRIPTION unitialized_fill_n starts at the iterator \f2first\fP and initializes the first \f2n\fP items to the value \f2x\fP, using the construct algorithm. .SH SEE ALSO construct, uninitialized_fill