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

template<class ArrayT>
virtual void Impala::Core::Vector::VectorSet< ArrayT >::Dump ( int  from,
int  to,
std::ostream &  os 
) [inline, virtual]

Definition at line 239 of file VectorSet.h.

References Impala::Core::Vector::VectorSet< ArrayT >::Capacity(), Impala::Core::Vector::VectorSet< ArrayT >::GetVector(), and Impala::Core::Vector::VectorSet< ArrayT >::Size().

00240     {
00241         if (to == -1)
00242             to = Size();
00243         if (to < from)
00244             to = from;
00245         os << "Dumping VectorSet from " << from << " to " << to
00246            << " (set size=" << Size() << ", capacity=" << Capacity()
00247            << ")" << std::endl;
00248         for (int i=from ; i<to ; i++)
00249             os << "  " << i << " = " << GetVector(i, true) << std::endl;
00250         os << std::endl;
00251     }

Here is the call graph for this function:


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