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

template<class C>
void Impala::Core::Column::Reverse ( C *  column,
int  nrElem 
) [inline]

Definition at line 18 of file Reverse.h.

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

00019 {
00020     ILOG_VAR(Impala.Core.Column.Reverse);
00021     if (nrElem > column->Capacity())
00022     {
00023         ILOG_ERROR("Too many elements");
00024         return;
00025     }
00026 
00027     Util::Reverse(column->GetData(), 0, nrElem - 1);
00028 }

Here is the call graph for this function:


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