Lines Matching refs:ostream
35 inline void serialize_newline(std::ostream& str) { str << '\n'; }
38 inline void serialize(std::ostream& str, bool x) { str << static_cast<unsigned>(x) << " "; }
40 inline void serialize(std::ostream& str, char x) { str << static_cast<int>(x) << " "; }
42 inline void serialize(std::ostream& str, unsigned char x) { str << static_cast<unsigned>(x) << " "; }
44 inline void serialize(std::ostream& str, signed char x) { str << static_cast<int>(x) << " "; }
46 inline void serialize(std::ostream& str, short x) { str << x << " "; }
48 inline void serialize(std::ostream& str, unsigned short x) { str << x << " "; }
50 inline void serialize(std::ostream& str, int x) { str << x << " "; }
52 inline void serialize(std::ostream& str, unsigned int x) { str << x << " "; }
54 inline void serialize(std::ostream& str, long x) { str << x << " "; }
56 inline void serialize(std::ostream& str, unsigned long x) { str << x << " "; }
58 inline void serialize(std::ostream& str, long long x) { str << x << " "; }
60 inline void serialize(std::ostream& str, unsigned long long x) { str << x << " "; }
62 inline void serialize(std::ostream& str, float x) { str << x << " "; }
64 inline void serialize(std::ostream& str, double x) { str << x << " "; }
66 inline void serialize(std::ostream& str, const std::string& x) { str << x << " "; }
70 void serialize(std::ostream& str, std::vector<T>& x)
100 void serialize(std::ostream& str, std::array<T, Size>& x)