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

Method push_str

crates/vm/src/bytes_inner.rs:1026–1028  ·  view source on GitHub ↗
(&mut self, other: &[u8])

Source from the content-addressed store, hash-verified

1024 }
1025
1026 fn push_str(&mut self, other: &[u8]) {
1027 self.extend(other)
1028 }
1029}
1030
1031const ASCII_WHITESPACES: [u8; 6] = [0x20, 0x09, 0x0a, 0x0c, 0x0d, 0x0b];

Callers 7

collection_reprFunction · 0.45
py_addMethod · 0.45
py_padMethod · 0.45
py_joinMethod · 0.45
fmtMethod · 0.45
slot_reprMethod · 0.45
repr_with_nameMethod · 0.45

Calls 1

extendMethod · 0.45

Tested by

no test coverage detected