From 7d0e4f20e9773579fe85f88db538fdbeea5fc595 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 22 Feb 2022 03:18:37 +0000 Subject: [PATCH] Implement into_asc_order_iter() --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f3c6290..2558cfe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -578,7 +578,7 @@ impl BinarySearchTree for IterativeBST { } fn into_asc_order_iter(self) -> IntoIter { - todo!() + self.into_in_order_iter() } fn into_pre_order_iter(self) -> IntoIter {