TF++, Miscellaneous classes and modules in C++:

◆ operator<<()

template<class T >
std::ostream& operator<< ( std::ostream &  os,
const tfxx::Range< T > &  r 
)

Definition at line 57 of file stringtest.cc.

58 {
59  os << r.first() << " - " << r.last();
60  return os;
61 }
Tvalue & last()
access end of range
Definition: range.h:65
Tvalue & first()
access start of range
Definition: range.h:63