Returns true if any changes were recorded.
(&self)
| 129 | |
| 130 | /// Returns true if any changes were recorded. |
| 131 | pub fn has_changes(&self) -> bool { |
| 132 | self.total_ops() > 0 |
| 133 | } |
| 134 | |
| 135 | /// Merges another stats instance into this one. |
| 136 | pub fn merge(&mut self, other: &CrdtBuildStats) { |
no test coverage detected