55 inline std::ostream& operator<<(std::ostream& os, const std::vector<T>& v)
61 for (
auto it = v.begin(); it < v.end() - 1; ++it)
82 inline std::ostream& operator<<(std::ostream& os, const VecLowPrecision<T>& val)
85 const auto& v = val.value;
88 for (
auto it = v.begin(); it < v.end() - 1; ++it)
90 os <<
String(*it,
false) <<
", ";
92 os <<
String(v.back(),
false);
100 template <
typename TString>
101 inline std::vector<String>& operator<<(std::vector<String>& sl,
const TString& string)
103 sl.push_back(
string);
const std::vector< T > & value
Definition: ListUtilsIO.h:76
A more convenient string class.
Definition: String.h:58
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
VecLowPrecision(const std::vector< T > &v)
Definition: ListUtilsIO.h:77
Definition: ListUtilsIO.h:74