An idiomatic and fast QP-trie implementation in pure Rust.
Hi, it would be nice if a `insert_or_get_mut()` would exist. my use case: The Qp tries store bitmaps. I have a new bitmap `A` associated with the key `1`. I would like the perform a binary and operation if a bitmap `B` for key `1` is already in the trie otherwise I would like to insert `A`. So that the value of key `1` is now `A & B`. Currently I simple call `.insert(A)`. If I get `Some` as return value I perform `insert(A & B)` again. But so I must run twice through the trie.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by LuckyTurtleDev and has received 0 comments.