template<typename T , typename std::enable_if< std::is_scalar< T >::value >::type * > | |
std::ostream & | display (std::ostream &out, const T &x) |
template<class T > | |
std::ostream & | display (std::ostream &out, const std::vector< T > &x, unsigned int padding) |
template<typename T , typename std::enable_if< std::is_scalar< T >::value >::type * > | |
std::ofstream & | display (std::ofstream &out, const T &x) |
template<class T > | |
std::ofstream & | display (std::ofstream &out, const std::vector< T > &x, unsigned int padding) |
std::ofstream & display | ( | std::ofstream & | out, |
const std::vector< T > & | x, | ||
unsigned int | padding ) |
Display vector in a nicely formatted to a std::ofstream
[in,out] | out | output file stream |
[in] | x | vector to be displayed |
[in] | padding | (default = 0) number of trailing spaces |
Definition at line 1680 of file Operators_vector.tpp.
std::ofstream & display | ( | std::ofstream & | out, |
const T & | x ) |
Dummy function for recursive templated routines display
[in,out] | out | output stream |
[in] | x | variable to be displayed |
Definition at line 1652 of file Operators_vector.tpp.
std::ostream & display | ( | std::ostream & | out, |
const std::vector< T > & | x, | ||
unsigned int | padding ) |
Display vector in a nicely formatted to a std::ostream
[in,out] | out | output stream |
[in] | x | vector to be displayed |
[in] | padding | (default = 0) number of trailing spaces |
Definition at line 1613 of file Operators_vector.tpp.
std::ostream & display | ( | std::ostream & | out, |
const T & | x ) |
Dummy function for recursive templated routines display
[in,out] | out | output stream |
[in] | x | variable to be displayed |
Definition at line 1585 of file Operators_vector.tpp.