Returns the number of unique files touched across the session.
(&self)
| 343 | |
| 344 | /// Returns the number of unique files touched across the session. |
| 345 | pub fn files_touched_count(&self) -> u32 { |
| 346 | self.files_touched.len() as u32 |
| 347 | } |
| 348 | |
| 349 | /// Mark the start of a new turn. |
| 350 | pub fn begin_turn(&mut self) { |
no test coverage detected