add various missing utility functions#51
Open
AlexanderSchuetz97 wants to merge 3 commits into
Open
Conversation
- insert_entry to RawVacantEntryMut and VacantEntry - front_entry/back_entry to map -> Option<RawOccupiedEntryMut> - current_entry to CursorMut -> Option<RawOccupiedEntryMut>
Author
|
@djc can you review this? |
Owner
No need to remind me within 24 hours. |
Author
|
sorry, wasn't sure github notfied you that this PR exists. I don't get emails for pull requests on my repos unless someone assign me. But I was not able to assign you so I tagged you. If you got notified of this PR by itself then you must have done some settings in gh that I couldn't find. Sorry for bothering you. Take your time. |
Owner
|
There's a Watch button on the repo front page that people can use to be notified of all repo activity. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
solves #50
I also added all the other gadgets that I also found absent that I require for my use case.
I currently have code that uses BTreeMap that I want to change to LinkedHashMap because I need to re-order
the map based on external criteria. I like your Cursor struct btw. its good.
Let me know what you think