Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class ElemT>
VectorTem<ElemT> Impala::Core::Vector::Append ( const VectorTem< ElemT > &  v1,
const VectorTem< ElemT > &  v2 
)

Definition at line 225 of file VectorTem.h.

References Impala::Core::Vector::VectorTem< ElemT >::GetData(), and Impala::Core::Vector::VectorTem< ElemT >::Size().

00226 {
00227     VectorTem<ElemT> ret(v1.Size() + v2.Size());
00228     ret.CopyData(v1.Size(), v1.GetData());
00229     ret.CopyData(v2.Size(), v2.GetData(), v1.Size());
00230     return ret;
00231 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:37 2011 for ImpalaSrc by  doxygen 1.5.1