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

template<class ElemT>
std::ostream& Impala::Core::Vector::operator<< ( std::ostream &  os,
const VectorTem< ElemT > &  v 
) [inline]

Definition at line 235 of file VectorTem.h.

00236 {
00237     os << "(";
00238     for (int i=0 ; i<v.Size() ; i++)
00239     {
00240         os << v[i];
00241         if (i != v.Size() - 1)
00242             os << ",";
00243     }
00244     os << ")";
00245     return os;
00246 }


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