Skip to content

Commit b8b37ac

Browse files
committed
Fixed documentation.
1 parent b18dd9b commit b8b37ac

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff 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)
8688
Adds 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()
237239
Same 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

0 commit comments

Comments
 (0)