SplayTree: Add PreviousDontSplay to IteratableSplayTree.

This commit is contained in:
Augustin Cavalier
2025-04-10 17:59:13 -04:00
parent d45f85d19f
commit 5f8c94242b
+5
View File
@@ -563,6 +563,11 @@ public:
return fTree.IsEmpty();
}
Node* PreviousDontSplay(const Key& key)
{
return fTree.PreviousDontSplay(key);
}
Node* FindClosest(const Key& key, bool greater, bool orEqual)
{
return fTree.FindClosest(key, greater, orEqual);