SQT
A C++ ORM framework for SQLite
Loading...
Searching...
No Matches

◆ operator++() [2/2]

template<SelecterType SELECTER>
void sqt::Iterator< SELECTER >::operator++ ( int )

Advances the iterator to the next result element.

Exceptions
sqt::SQLErrorThrown if the underlying statement execution fails.

This is the post-increment operator syntax. It is equivalent to calling the pre-increment operator.

Note
This operator returns void and does not return the previous iterator, as it is a single-pass iterator.
See also
sqt::Iterator<>::operator++()