From b325d8b8a6229be355b0c2221c558f2ccb3ff0c4 Mon Sep 17 00:00:00 2001 From: Oleg Lebedev Date: Sun, 14 Apr 2024 16:38:20 +1000 Subject: [PATCH] remove comment --- src/linked_hash_map.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/linked_hash_map.rs b/src/linked_hash_map.rs index ac77d63..f0d9191 100644 --- a/src/linked_hash_map.rs +++ b/src/linked_hash_map.rs @@ -1423,11 +1423,6 @@ pub struct Drain<'a, K, V> { /// - The current implementation does not include an `index` method, as it does not track the index /// of its elements. It operates by providing items as key-value tuples, allowing the value to be /// modified via a mutable reference while the key could not be changed. -/// - The current implementation does not include `splice_*`, `split_*`, `as_cursor`, or -/// `remove_current` methods, as there hasn't been a strong demand for these features in -/// real-world scenarios. However, they can be readily incorporated into the existing codebase if -/// needed. -/// - For added convenience, it includes the `move_at` method. /// pub struct CursorMut<'a, K, V, S> { cur: *mut Node,