MCPcopy Create free account
hub / github.com/apache/arrow-rs / append_value

Method append_value

arrow-array/src/builder/generic_bytes_view_builder.rs:327–329  ·  view source on GitHub ↗
(&mut self, value: impl AsRef<T::Native>)

Source from the content-addressed store, hash-verified

325 /// - String length exceeds `u32::MAX`
326 #[inline]
327 pub fn append_value(&mut self, value: impl AsRef<T::Native>) {
328 self.try_append_value(value).unwrap()
329 }
330
331 /// Appends a value into the builder
332 ///

Calls 1

try_append_valueMethod · 0.45