MCPcopy Create free account
hub / github.com/apache/datafusion / write_str

Method write_str

datafusion/functions/src/strings.rs:591–593  ·  view source on GitHub ↗
(&mut self, s: &str)

Source from the content-addressed store, hash-verified

589impl StringWriter for GenericStringWriter<'_> {
590 #[inline(always)]
591 fn write_str(&mut self, s: &str) {
592 push_bytes_to_mutable_buffer(self.value_buffer, s.as_bytes());
593 }
594
595 #[inline(always)]
596 fn write_char(&mut self, c: char) {

Calls 3

ensure_long_capacityMethod · 0.80
lenMethod · 0.45