minor buffer object optimization

This commit is contained in:
Francesco Cozzuto
2021-12-08 18:15:59 +01:00
parent dbf1c325b0
commit 2a0af0f9bd
3 changed files with 101 additions and 6 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ fun locate(tree, index, path)
path[count(path)] = cursor;
while cursor.is_leaf == false:
while not cursor.is_leaf:
{
if rindex < _count(cursor.left):
cursor = cursor.left;