File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ Creates an interval where the borders are sorted so the lower border is the firs
8181 - [ bool empty() const noexcept] ( #bool-empty-const-noexcept )
8282 - [ iterator begin()] ( #iterator-begin )
8383 - [ iterator end()] ( #iterator-end )
84+ - [ iterator cbegin()] ( #iterator-cbegin )
85+ - [ iterator cend()] ( #iterator-cend )
8486
8587### iterator insert(interval_type const& ival)
8688Adds an interval into the tree.
@@ -233,7 +235,7 @@ Merges all overlapping intervals within the tree. After calling deoverlap, the t
233235### After deoverlap
234236![ AfterDeoverlap] ( https://user-images.githubusercontent.com/6238896/55505612-c5a96c80-5653-11e9-81f8-28a8ae35a077.png )
235237
236- ### interval_tree& deoverlap_copy()
238+ ### interval_tree deoverlap_copy()
237239Same as deoverlap, but not inplace
238240
239241---
@@ -269,6 +271,18 @@ Returns a past the end iterator.
269271
270272** Returns** : past the end iterator.
271273
274+ ---
275+ ### iterator cbegin()
276+ Returns the const_iterator of the interval with the lowest lower_bound.
277+
278+ ** Returns** : begin iterator.
279+
280+ ---
281+ ### iterator cend()
282+ Returns a past the end const_iterator.
283+
284+ ** Returns** : past the end const_iterator.
285+
272286---
273287
274288## Members of Interval
You can’t perform that action at this time.
0 commit comments