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

template<class Iterator>
bool Impala::Util::IOBuffer::WriteStrings ( Iterator  begin,
Iterator  end,
int  count = -1 
) [inline]

Definition at line 183 of file IOBuffer.h.

References Puts(), and Valid().

00184     {
00185         if (! Valid())
00186             return false;
00187 
00188         int c=0;
00189         for (Iterator it=begin ; it!=end ; it++)
00190         {
00191             String s = *it;
00192             Puts(s);
00193             if (++c == count)
00194                 break;
00195         }
00196         return true;
00197     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:24:14 2011 for ImpalaSrc by  doxygen 1.5.1