martinus / unordered_dense

A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion
MIT License
898 stars 72 forks source link

Support for rbegin / rend #67

Closed jcelerier closed 1 year ago

jcelerier commented 1 year ago

Since the containers support random-access given adequate underlying container, it would be nice for them to provide the typedefs

 reverse_iterator
 const_reverse_iterator

and the families of function rbegin() / rend() / crbegin() / crend()

martinus commented 1 year ago

Why do you need that? Iterating a unordered container is more or less random anyways