@@ -84,10 +84,10 @@ Creates an interval where the borders are sorted so the lower border is the firs
8484 - [ iterator end()] ( #iterator-end )
8585 - [ iterator cbegin()] ( #iterator-cbegin )
8686 - [ iterator cend()] ( #iterator-cend )
87- - [ iterator rbegin()] ( #iterator-rbegin )
88- - [ iterator rend()] ( #iterator-rend )
89- - [ iterator crbegin()] ( #iterator-crbegin )
90- - [ iterator crend()] ( #iterator-crend )
87+ - [ reverse_iterator rbegin()] ( #iterator-rbegin )
88+ - [ reverse_iterator rend()] ( #iterator-rend )
89+ - [ reverse_iterator crbegin()] ( #iterator-crbegin )
90+ - [ reverse_iterator crend()] ( #iterator-crend )
9191
9292### iterator insert(interval_type const& ival)
9393Adds an interval into the tree.
@@ -291,32 +291,29 @@ Returns a past the end const_iterator.
291291
292292---
293293
294- ---
295- ### iterator rbegin()
294+ ### reverse_iterator rbegin()
296295Returns the iterator of the interval with the highest lower_bound.
297296
298297** Returns** : rbegin iterator.
299298
300299---
301- ### iterator rend()
300+ ### reverse_iterator rend()
302301Returns a past the end iterator in reverse.
303302
304303** Returns** : past the end iterator.
305304
306305---
307- ### iterator crbegin()
306+ ### reverse_iterator crbegin()
308307Returns the const_iterator of the interval with the highest lower_bound.
309308
310309** Returns** : begin iterator.
311310
312311---
313- ### iterator crend()
312+ ### reverse_iterator crend()
314313Returns a past the end const_iterator in reverse.
315314
316315** Returns** : past the end const_iterator.
317316
318- ---
319-
320317## Members of Interval
321318___ You can implement your own interval if you provide all the same functions.___
322319
0 commit comments