Returns the total number of token operations.
(&self)
| 771 | |
| 772 | /// Returns the total number of token operations. |
| 773 | pub fn total_token_ops(&self) -> usize { |
| 774 | self.tokens_added + self.tokens_deleted + self.tokens_replaced |
| 775 | } |
| 776 | |
| 777 | /// Returns true if there are any changes. |
| 778 | pub fn has_changes(&self) -> bool { |
no outgoing calls
no test coverage detected