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

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

Definition at line 32 of file Reverse.h.

References ILOG_ERROR, ILOG_VAR, and Impala::Util::Reverse().

Referenced by Reverse().

00033 {
00034     ILOG_VAR(Impala.Core.Column.ReversePart);
00035     if (column->Capacity() == 0)
00036         return;
00037 
00038     if(left<0 || right>=column->Capacity())
00039     {
00040         ILOG_ERROR("Invalid args");
00041         return;
00042     }
00043 
00044     Util::Reverse(column->GetData(), 0, column->Capacity()-1);
00045 }

Here is the call graph for this function:


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