(&mut self, universe: Universe, key: &Q)
| 427 | /// ``` |
| 428 | #[inline] |
| 429 | pub fn remove<Q>(&mut self, universe: Universe, key: &Q) -> Option<V> |
| 430 | where |
| 431 | Q: Hash + Equivalent<K> + ?Sized, |
| 432 | { |
| 433 | let map = self.of_mut(universe); |
| 434 | |
| 435 | map.remove(key) |
| 436 | } |
| 437 | |
| 438 | /// Checks if the [`HashMap`] in the specified [`Universe`] contains a key. |
| 439 | /// |