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

Method write_slice

crates/compiler-core/src/marshal.rs:760–762  ·  view source on GitHub ↗
(&mut self, slice: &[u8])

Source from the content-addressed store, hash-verified

758
759impl Write for Vec<u8> {
760 fn write_slice(&mut self, slice: &[u8]) {
761 self.extend_from_slice(slice)
762 }
763}
764
765pub(crate) fn write_len<W: Write>(buf: &mut W, len: usize) {

Callers 7

write_object_depthFunction · 0.80
write_u8Method · 0.80
write_u16Method · 0.80
write_u32Method · 0.80
write_u64Method · 0.80
write_vecFunction · 0.80
write_marshal_strFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected