Check if the store is empty.
(&self)
| 375 | |
| 376 | /// Check if the store is empty. |
| 377 | pub fn is_empty(&self) -> bool { |
| 378 | self.changes.read().unwrap().is_empty() |
| 379 | } |
| 380 | |
| 381 | /// Clear all changes from the store. |
| 382 | pub fn clear(&self) { |
no test coverage detected