Return true if there are no replacements.
(&self)
| 881 | |
| 882 | /// Return true if there are no replacements. |
| 883 | pub fn is_empty(&self) -> bool { |
| 884 | return self.replacements.is_empty(); |
| 885 | } |
| 886 | |
| 887 | fn pretty_print_replacements(&self) -> String { |
| 888 | let mut group_string = String::with_capacity(128); |
no outgoing calls