-
Notifications
You must be signed in to change notification settings - Fork 33
Provide mutable versions of exact_match and longest_match #6
Comments
I needed this as well for longest_match and came up with a very rudimentary version in https://github.com/zesplot/treebitmap/tree/longest_match_mut It lacks tests and documentation, as I'm not sure whether this (i.e., repeating the immutable version of the function) is the desired way of doing it. @hroi , if you think it is, I can add tests+docs and create a pull request. |
Yeah, I did the same xD |
Thanks for the mutable version of longest_match_mut(). I needed this too. |
My thanks to whoever called the necromancer. I will try to get my shit together and stop neglecting this repo. If someone wants to help maintain it, please let me know! |
Closed the wrong issue. |
Yay, @hroi has been revived ^_^ |
If a tree node holds some mutable structure (like HashMap) it's desirable to modify it inline without removing, modifying and inserting it back.
The text was updated successfully, but these errors were encountered: