⬆️ Update vendor

This commit is contained in:
mudler
2023-02-02 10:19:53 +01:00
parent bd2ae7a8a1
commit c2e751ba98
118 changed files with 111 additions and 3945 deletions

View File

@@ -796,7 +796,7 @@ func (t *BTree) DescendLessOrEqual(pivot Item, iterator ItemIterator) {
}
// DescendGreaterThan calls the iterator for every value in the tree within
// the range [last, pivot), until iterator returns false.
// the range (pivot, last], until iterator returns false.
func (t *BTree) DescendGreaterThan(pivot Item, iterator ItemIterator) {
if t.root == nil {
return