Similar to `FxHashMap::entry`, gets the given key's corresponding entry in the map for in-place manipulation.
(&'a mut self, ctx: &C, key: K)
| 104 | /// Similar to `FxHashMap::entry`, gets the given key's corresponding entry in the map for |
| 105 | /// in-place manipulation. |
| 106 | pub fn entry<'a, C>(&'a mut self, ctx: &C, key: K) -> Entry<'a, K, V> |
| 107 | where |
| 108 | C: CtxEq<K, K> + CtxHash<K>, |
| 109 | { |
| 110 | self.entry_with_depth(ctx, key, self.depth()) |
| 111 | } |
| 112 | |
| 113 | /// Get the entry, setting the scope depth at which to insert. |
| 114 | pub fn entry_with_depth<'a, C>(&'a mut self, ctx: &C, key: K, depth: usize) -> Entry<'a, K, V> |