(&mut self)
| 276 | } |
| 277 | |
| 278 | pub fn iter(&mut self) -> impl Iterator<Item = &mut Workspace> { |
| 279 | self.workspaces.iter_mut() |
| 280 | } |
| 281 | |
| 282 | pub fn current_mut(&mut self) -> &mut Workspace { |
| 283 | &mut self.workspaces[self.current as usize] |
no outgoing calls
no test coverage detected