(&self, other: &Self)
| 152 | fn is_empty(&self) -> bool; |
| 153 | |
| 154 | fn py_add(&self, other: &Self) -> Self::Container { |
| 155 | let mut new = Self::Container::with_capacity(self.bytes_len() + other.bytes_len()); |
| 156 | new.push_str(self); |
| 157 | new.push_str(other); |
| 158 | new |
| 159 | } |
| 160 | |
| 161 | fn py_split<T, SP, SN, SW>( |
| 162 | &self, |
no test coverage detected