File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,10 @@ Creates an interval where the borders are sorted so the lower border is the firs
84
84
- [ iterator end()] ( #iterator-end )
85
85
- [ iterator cbegin()] ( #iterator-cbegin )
86
86
- [ 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
91
88
92
### iterator insert(interval_type const& ival)
89
93
Adds an interval into the tree.
@@ -287,6 +291,32 @@ Returns a past the end const_iterator.
287
291
288
292
---
289
293
294
+ ---
295
+ ### iterator rbegin()
296
+ Returns the iterator of the interval with the highest lower_bound.
297
+
298
+ ** Returns** : rbegin iterator.
299
+
300
+ ---
301
+ ### iterator rend()
302
+ Returns a past the end iterator in reverse.
303
+
304
+ ** Returns** : past the end iterator.
305
+
306
+ ---
307
+ ### iterator crbegin()
308
+ Returns the const_iterator of the interval with the highest lower_bound.
309
+
310
+ ** Returns** : begin iterator.
311
+
312
+ ---
313
+ ### iterator crend()
314
+ Returns a past the end const_iterator in reverse.
315
+
316
+ ** Returns** : past the end const_iterator.
317
+
318
+ ---
319
+
290
320
## Members of Interval
291
321
___ You can implement your own interval if you provide all the same functions.___
292
322
You can’t perform that action at this time.
0 commit comments