MCPcopy Index your code
hub / github.com/RustPython/RustPython / join

Method join

crates/vm/src/bytes_inner.rs:548–551  ·  view source on GitHub ↗
(&self, iterable: ArgIterable<Self>, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

546 }
547
548 pub fn join(&self, iterable: ArgIterable<Self>, vm: &VirtualMachine) -> PyResult<Vec<u8>> {
549 let iter = iterable.iter(vm)?;
550 self.elements.py_join(iter)
551 }
552
553 #[inline]
554 pub fn find<F>(

Callers 10

runFunction · 0.45
test_read_homeFunction · 0.45
test_read_home_no_spacesFunction · 0.45
search_upFunction · 0.45
detect_venvFunction · 0.45
detect_build_directoryFunction · 0.45
calculate_stdlib_dirFunction · 0.45

Calls 2

py_joinMethod · 0.80
iterMethod · 0.45

Tested by 3

test_read_homeFunction · 0.36
test_read_home_no_spacesFunction · 0.36