We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e5294 commit b18dd9bCopy full SHA for b18dd9b
README.md
@@ -147,6 +147,7 @@ tree.insert({3, 7});
147
tree.insert({8, 9});
148
tree.find_all({3, 7}, [](auto iter) /* iter will be const_iterator if tree is const */ {
149
// will find all intervals that are exactly {3,7} here.
150
+ return true; // continue
151
});
152
```
153
@@ -208,6 +209,7 @@ tree.insert({5, 10});
208
209
tree.insert({10, 15});
210
tree.overlap_find_all({5, 5}, [](auto iter) /* iter will be const_iterator if tree is const */ {
211
// called with {0, 5} and {5, 10} in unspecified order.
212
213
214
215
0 commit comments