You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
If iterator points to end() and try_decrement fails, we will call key() on nullptr (leaf_ == nullptr for end())
Problem mentioned by lukaszstolarczuk is caused by a lack of special value for begin(). When we use operator++ and encounter end() we know it's time to stop. For operator-- be cannot rely on comparison with begin() since its value can change. We could introduce a special past-begin iterator for this purpose.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
radix_treeNeeds to be resolved to productize radix_treeType: BugSomething isn't working
operator-- may fail (when MtMode is enabled) in some specific cases, e.g.:
ref. #1156
The text was updated successfully, but these errors were encountered: