1
0
forked from Alepha/Alepha

Now it's possible to set delimiters on input streams.

This commit is contained in:
2023-10-29 05:58:29 -04:00
parent 1fc1c8daac
commit c15e42034f

View File

@ -91,6 +91,13 @@ namespace Alepha::Hydrogen::IOStreams ::detail:: stream_state
StreamState::get( os )= s.val;
return os;
}
friend std::istream &
operator >> ( std::istream &is, const Setter &s )
{
StreamState::get( is )= s.val;
return is;
}
};
};
}