.\" ident @(#)uninitialized_copy.3 .\" Standard Template Library .\" $$RW_INSERT_HEADER "slyrs.man" .TH uninitialized_copy 3C++ "02 Apr 1998" "Rogue Wave Software" "-" .ce2 Standard C++ Library Copyright 1998, Rogue Wave Software, Inc. .SH NAME \f2uninitialized_copy\fP \ - An algorithm that uses construct to copy values from one range to another location. .SH SYNOPSIS .RE .RS 0 #include .br template .RE .RS 1 ForwardIterator .RE .RS 0 uninitialized_copy (InputIterator first, .RE .RS 23 InputIterator last, .br ForwardIterator result); .SH DESCRIPTION uninitialized_copy copies all items in the range \f2[first, last)\fP into the location beginning at \f2result\fP using the construct algorithm. .SH SEE ALSO construct