(&mut self, universe: Universe, key: K)
| 541 | /// ``` |
| 542 | #[inline] |
| 543 | pub fn entry(&mut self, universe: Universe, key: K) -> Entry<'_, K, V, S, A> { |
| 544 | self.of_mut(universe).entry(key) |
| 545 | } |
| 546 | |
| 547 | /// Retains only the elements of the hashmap in the specified [`Universe`] that satisfy a |
| 548 | /// predicate. |