(&mut self, universe: Universe)
| 818 | /// ``` |
| 819 | #[inline] |
| 820 | pub fn values_mut(&mut self, universe: Universe) -> impl Iterator<Item = &mut V> { |
| 821 | self.of_mut(universe).values_mut() |
| 822 | } |
| 823 | } |
| 824 | |
| 825 | /// A specialized [`Realms`] container for [`HashMap`]s. |
no test coverage detected