public member function
<iterator>
std::move_iterator::operator-- (1)move_iterator& operator--();(2)
move_iterator operator--(int);
Decrease iterator position
Decreases the iterator by one position.Internally, the pre-decrement version (1) simply reflects the operation into its base iterator .
The post-decrement version (2) is implemented with a behavior equivalent to:
1
2
3
4
5
move_iterator operator--(int) {
move_iterator temp = *this;
--(*this);
return temp;
}
*this
.
*this
had before the call.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4