MCPcopy Create free account
hub / github.com/SharpCoder/teensycore / join_with_drop

Method join_with_drop

src/system/str.rs:263–267  ·  view source on GitHub ↗
(&mut self, other: &mut Str)

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 2

dropMethod · 0.80
joinMethod · 0.45

Tested by

no test coverage detected