diff options
-rw-r--r-- | src/crates/library/src/sorted_unique_vector.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crates/library/src/sorted_unique_vector.rs b/src/crates/library/src/sorted_unique_vector.rs index ffba865..b974693 100644 --- a/src/crates/library/src/sorted_unique_vector.rs +++ b/src/crates/library/src/sorted_unique_vector.rs @@ -147,7 +147,7 @@ impl<T: Ord + PartialEq> Container<T> for SortedUniqueVec<T> { (define (post-remove xs r) (equal? r (op-remove xs))) *ENDLIBSPEC*/ fn remove(&mut self, elt: T) -> Option<T> { - self.v.remove(self.binary_search(elt).ok()?) + Some(self.v.remove(self.v.binary_search(&elt).ok()?)) } fn iter<'a>(&'a self) -> impl Iterator<Item = &'a T> |