Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
olebedev committed Apr 14, 2024
1 parent 57e0876 commit b325d8b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/linked_hash_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<K, V>,
Expand Down

0 comments on commit b325d8b

Please sign in to comment.