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

template<class C>
void Impala::Core::Column::ReversePart ( C *  column,
int  left,
int  right 
) [inline]

Definition at line 28 of file Reverse.h.

References Impala::Util::Reverse().

Referenced by Reverse().

00029 {
00030     if (column->Capacity() == 0)
00031         return;
00032 
00033     if(left<0 || right>=column->Capacity())
00034     {
00035         std::cout << "[Column::ReversePart] error: incvalid args\n";
00036         return;
00037     }
00038 
00039     Util::Reverse(column->GetData(), 0, column->Capacity()-1);
00040 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:06:30 2010 for ImpalaSrc by  doxygen 1.5.1