(&mut self, universe: Universe)
| 159 | /// ``` |
| 160 | #[inline] |
| 161 | pub const fn of_mut(&mut self, universe: Universe) -> &mut T { |
| 162 | &mut self.data[universe as usize] |
| 163 | } |
| 164 | |
| 165 | /// Transforms the [`Realms<T>`] into a [`Realms<U>`] by applying a function to each value. |
| 166 | /// |
no outgoing calls
no test coverage detected