Lines Matching refs:istream
36 inline void serialize_newline(std::istream& str) { (void) str; }
39 inline void serialize(std::istream& str, bool& x) { unsigned v; str >> v; x = v; }
41 inline void serialize(std::istream& str, char& x) { int v; str >> v; x = v; }
43 inline void serialize(std::istream& str, unsigned char& x) { unsigned v; str >> v; x = v; }
45 inline void serialize(std::istream& str, signed char& x) { int v; str >> v; x = v; }
47 inline void serialize(std::istream& str, short& x) { str >> x; }
49 inline void serialize(std::istream& str, unsigned short& x) { str >> x; }
51 inline void serialize(std::istream& str, int& x) { str >> x; }
53 inline void serialize(std::istream& str, unsigned int& x) { str >> x; }
55 inline void serialize(std::istream& str, long& x) { str >> x; }
57 inline void serialize(std::istream& str, unsigned long& x) { str >> x; }
59 inline void serialize(std::istream& str, long long& x) { str >> x; }
61 inline void serialize(std::istream& str, unsigned long long& x) { str >> x; }
63 inline void serialize(std::istream& str, float& x) { str >> x; }
65 inline void serialize(std::istream& str, double& x) { str >> x; }
67 inline void serialize(std::istream& str, std::string& x) { str >> x; }
82 void serialize(std::istream& str, std::vector<T>& x,
112 void serialize(std::istream& str, std::array<T, Size>& x)