add various missing utility functions - #51
Conversation
|
@djc can you review this? |
No need to remind me within 24 hours. |
|
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. |
|
There's a Watch button on the repo front page that people can use to be notified of all repo activity. |
|
Can you address the CI failure, and squash your commits? Otherwise this looks okay, thanks! |
- insert_entry to RawVacantEntryMut and VacantEntry - front_entry/back_entry to map -> Option<RawOccupiedEntryMut> - current_entry to CursorMut -> Option<RawOccupiedEntryMut>
|
I hope its good now, if not then simply ping me again. |
|
If you'd like a release, please submit a PR bumping the version to 0.12.1. |
|
Will do so this weekend, thanks for merging. |
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