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

template<class ElemT>
void Impala::Core::Column::ColumnTem< ElemT >::Print ( int  from = 0,
int  to = -1 
) [inline]

Definition at line 172 of file ColumnTem.h.

00173     {
00174         if (to < 0 || to > mCapacity)
00175             to = mCapacity - 1;
00176         for (int i=from ; i<to ; ++i)
00177             std::cout << mData[i] << std::endl;
00178         std::cout << std::endl;
00179     }


Generated on Thu Jan 13 09:18:53 2011 for ImpalaSrc by  doxygen 1.5.1