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

template<class C>
int Impala::Core::Column::Find ( C *  col,
typename C::ColElemType  elem,
int  start,
int  end 
) [inline]

Definition at line 23 of file Find.h.

00024 {
00025     if (end == -1)
00026         end = col->Capacity();
00027     for (int i=start ; i<end ; i++)
00028         if (col->Get(i) == elem)
00029             return i;
00030     return end;
00031 }


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