(&mut self, other: &mut Str)
| 261 | } |
| 262 | |
| 263 | pub fn join_with_drop(&mut self, other: &mut Str) -> bool { |
| 264 | let ret = self.join(other); |
| 265 | other.drop(); |
| 266 | return ret; |
| 267 | } |
| 268 | |
| 269 | pub fn as_vector(&self) -> Vector<u8> { |
| 270 | let mut result = Vector::new(); |