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

◆ operator<<() [3/3]

template<typename T >
tfxx::fortranio::FortranBinOutput& tfxx::fortranio::operator<< ( tfxx::fortranio::FortranBinOutput fo,
const T &  value 
)

Output operator template for class FortranBinOutput ,The compiler will consider namespace tfxx::fortranio due to the involved FortranBinOutput object. There is another output operator template to write raw Blitz++ arrays.

Definition at line 284 of file fortranio.h.

References tfxx::fortranio::FortranBinOutput::put().

285 {
286  fo.put(value);
287  return(fo);
288 }
void put(const T &value)
put a value to the output
Definition: fortranio.h:253
Here is the call graph for this function: