llvm::SmallVectorTemplateBase::uninitialized_copy

Copy the range []I, E) onto uninitialized memory starting at Dest.

Synopsis

Declared in <llvm/ADT/SmallVector.h>

template<
    typename It1,
    typename It2>
static
void
uninitialized_copy(
    It1 I,
    It1 E,
    It2 Dest);

Parameters

NameDescription
IIterator to the first element to copy.
EIterator past the last element to copy.
DestDestination iterator for uninitialized storage.