I'm thinking it would be useful if we could have &mut self APIs like get_mut, insert_mut, remove_mut and iter_mut for skiplist.
In recent months I was working on a relatively similar scenario for queues in PR #1191 and I think same benefits in terms of performance and even more features like giving mutable access to a value with get_mut and etc can be obtained here for skiplist.
If it makes any sense, I can take time working on it.
thanks
I'm thinking it would be useful if we could have
&mut selfAPIs likeget_mut,insert_mut,remove_mutanditer_mutfor skiplist.In recent months I was working on a relatively similar scenario for queues in PR #1191 and I think same benefits in terms of performance and even more features like giving mutable access to a value with
get_mutand etc can be obtained here for skiplist.If it makes any sense, I can take time working on it.
thanks