creaImageIO_lib
creaImageIOIndexedHeap.txx File Reference

Code of IndexedHeap. More...

This graph shows which files directly or indirectly include this file:

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)
 

Detailed Description

Code of IndexedHeap.

Definition in file creaImageIOIndexedHeap.txx.

Function Documentation

template<class T , class CT , class IT >
std::ostream& operator<< ( std::ostream &  s,
const IndexedHeap< T, CT, IT > &  t 
)

Definition at line 37 of file creaImageIOIndexedHeap.txx.

38 {
39  s << "[";
40  for (int i=0; i<t.size(); i++) s << t[i] << " " ;
41  s << "]";
42  return s;
43 }