libpqxx
The C++ client library for PostgreSQL
|
Input iterator for stream_from. More...
Public Types | |
using | value_type = std::tuple<TYPE...> |
Public Member Functions | |
stream_from_input_iterator ()=default | |
Construct an "end" iterator. | |
stream_from_input_iterator (stream_t &home) | |
stream_from_input_iterator (stream_from_input_iterator const &)=default | |
stream_from_input_iterator & | operator++ () |
value_type const & | operator* () const |
bool | operator== (stream_from_input_iterator const &rhs) const |
Comparison only works for comparing to end(). | |
bool | operator!= (stream_from_input_iterator const &rhs) const |
Comparison only works for comparing to end(). | |
Input iterator for stream_from.
Just barely enough to support range-based "for" loops on stream_from. Don't assume that any of the usual behaviour works beyond that.