17 #include "exception.h" 27 inline istream& operator>>(istream& stream,
const char* token) {
28 istream::sentry sentry(stream);
30 for (
const char* p = token; *p; ++p) {
33 if (stream.get() != *p)
34 throw core::Exception(
"input doesn't match the expected token '%s'", token);
41 inline char nextSymbol(istream& stream) {
44 return char((stream >> std::ws).peek());
48 ostream& operator<<(ostream& stream, const vector<T>& v) {
50 for (
size_t i = 0; i < v.size(); ++i) {
60 istream& operator>>(istream& stream, vector<T>& v) {
61 vector<T> extracted_vector;
64 if (nextSymbol(stream) !=
'}') {
68 extracted_vector.push_back(value);
70 if (nextSymbol(stream) ==
'}')
The base for exception types in the Darwin framework.
Definition: exception.h:27
Generic utilities.
Definition: exception.h:24