template<class Iterator>
Definition at line 178 of file File.h. References Impala::EndianSwap(), GetWriteBuffer(), and Impala::Util::IOBuffer::Write(). 00179 { 00180 typedef typename Iterator::value_type elem_type; 00181 00182 IOBuffer* buf = GetWriteBuffer(); 00183 for (Iterator it=begin ; it!=end ; it++) 00184 { 00185 elem_type d = *it; 00186 EndianSwap(&d); 00187 buf->Write(&d, sizeof(d)); 00188 } 00189 delete buf; 00190 }
Here is the call graph for this function: ![]()
|