operator+(std::reverse_iterator)
From cppreference.com
                    
                                        
                    < cpp | iterator | reverse iterator
                    
                                                            
                    
| template< class Iterator >  reverse_iterator<Iterator>  | (until C++17) | |
| template< class Iterator >  constexpr reverse_iterator<Iterator>  | (since C++17) | |
Returns the iterator it incremented by n.
| Contents | 
[edit] Parameters
| n | - | the number of positions to increment the iterator | 
| it | - | the iterator adaptor to increment | 
[edit] Return value
The incremented iterator, that is reverse_iterator<Iterator>(x.current - n)
[edit] Example
| This section is incomplete Reason: no example | 
[edit] See also
| advances or decrements the iterator (public member function) | 


