Code of IndexedHeap. More...
Go to the source code of this file.
Functions | |
template<class T , class CT , class IT > | |
std::ostream & | operator<< (std::ostream &s, const IndexedHeap< T, CT, IT > &t) |
Code of IndexedHeap.
Definition in file creaImageIOIndexedHeap.txx.
std::ostream& operator<< | ( | std::ostream & | s, | |
const IndexedHeap< T, CT, IT > & | t | |||
) |
Definition at line 9 of file creaImageIOIndexedHeap.txx.
{ s << "["; for (int i=0; i<t.size(); i++) s << t[i] << " " ; s << "]"; return s; }