3 #ifndef BITCOIN_REVERSE_ITERATOR_H
4 #define BITCOIN_REVERSE_ITERATOR_H
22 auto begin() const -> decltype(this->m_x.rbegin())
27 auto end() const -> decltype(this->m_x.rend())
39 #endif // BITCOIN_REVERSE_ITERATOR_H
Template used for reverse iteration in C++11 range-based for loops.
reverse_range< T > reverse_iterate(T &x)
auto end() const -> decltype(this->m_x.rend())
auto begin() const -> decltype(this->m_x.rbegin())