Hyper API for C++
0.0.16638
Hyper client library for C++ applications
|
Iterates over a hyperapi::Row
in values (hyperapi::Value
).
More...
#include <Result.hpp>
Public Types | |
using | iterator_category = std::input_iterator_tag |
using | value_type = Value |
using | difference_type = std::ptrdiff_t |
using | pointer = const Value * |
using | reference = const Value & |
Public Member Functions | |
ColumnIterator (const Row &row, IteratorBeginTag) noexcept | |
Constructs the begin-iterator. | |
ColumnIterator (const Row &row, IteratorEndTag) noexcept | |
Constructs the end-iterator. | |
reference | operator* () const noexcept |
Returns a reference to the current value. | |
pointer | operator-> () const noexcept |
Returns a pointer to the current value. | |
ColumnIterator & | operator++ () |
Advances the iterator. | |
ColumnIterator | operator++ (int) |
Advances the iterator. | |
Friends | |
bool | operator== (const ColumnIterator &lhs, const ColumnIterator &rhs) noexcept |
Comparison operator. | |
bool | operator!= (const ColumnIterator &lhs, const ColumnIterator &rhs) noexcept |
Comparison operator. | |
Iterates over a hyperapi::Row
in values (hyperapi::Value
).
Definition at line 444 of file Result.hpp.